Chromium Code Reviews| Index: src/opts/opts_check_x86.cpp |
| diff --git a/src/opts/opts_check_x86.cpp b/src/opts/opts_check_x86.cpp |
| index 34045d4977babfa6d93ff6e602825291933ec74a..2e140e8df61f40e7b596c00eff5b43e39b07be9e 100644 |
| --- a/src/opts/opts_check_x86.cpp |
| +++ b/src/opts/opts_check_x86.cpp |
| @@ -76,7 +76,7 @@ int* get_SIMD_level() { |
| int cpu_info[4] = { 0, 0, 0, 0 }; |
| getcpuid(1, cpu_info); |
| - int* level = SkNEW(int); |
| + int* level = new int; |
| if ((cpu_info[2] & (1<<20)) != 0) { |
| *level = SK_CPU_SSE_LEVEL_SSE42; |