Index: src/ia32/cpu-ia32.cc |
diff --git a/src/ia32/cpu-ia32.cc b/src/ia32/cpu-ia32.cc |
index 7094f468eabe205de2c75ba77e65bbe744b6b491..00c20437bf950bb60d587cd60ec4cc7a664b0b65 100644 |
--- a/src/ia32/cpu-ia32.cc |
+++ b/src/ia32/cpu-ia32.cc |
@@ -12,13 +12,13 @@ |
#if V8_TARGET_ARCH_IA32 |
-#include "src/cpu.h" |
+#include "src/assembler.h" |
#include "src/macro-assembler.h" |
namespace v8 { |
namespace internal { |
-void CPU::FlushICache(void* start, size_t size) { |
+void CpuFeatures::FlushICache(void* start, size_t size) { |
// No need to flush the instruction cache on Intel. On Intel instruction |
// cache flushing is only necessary when multiple cores running the same |
// code simultaneously. V8 (and JavaScript) is single threaded and when code |