| Index: src/x64/assembler-x64.cc
|
| diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc
|
| index 59b027f5beb9a7241d92cdbfc8fd2f806ef5fca7..6d3750e3109c95426b9af2ef64116902765c274b 100644
|
| --- a/src/x64/assembler-x64.cc
|
| +++ b/src/x64/assembler-x64.cc
|
| @@ -16,7 +16,7 @@ namespace internal {
|
| // Implementation of CpuFeatures
|
|
|
| void CpuFeatures::ProbeImpl(bool cross_compile) {
|
| - CPU cpu;
|
| + base::CPU cpu;
|
| CHECK(cpu.has_sse2()); // SSE2 support is mandatory.
|
| CHECK(cpu.has_cmov()); // CMOV support is mandatory.
|
|
|
| @@ -74,7 +74,7 @@ void RelocInfo::PatchCode(byte* instructions, int instruction_count) {
|
| }
|
|
|
| // Indicate that code has changed.
|
| - CPU::FlushICache(pc_, instruction_count);
|
| + CpuFeatures::FlushICache(pc_, instruction_count);
|
| }
|
|
|
|
|
|
|