Index: test/cctest/test-disasm-ia32.cc |
diff --git a/test/cctest/test-disasm-ia32.cc b/test/cctest/test-disasm-ia32.cc |
index f96eb00fd1f634e6141af56d5b39f2069e8daba0..3ecd7b325628e302c17d3838715f3a0175aa3a9e 100644 |
--- a/test/cctest/test-disasm-ia32.cc |
+++ b/test/cctest/test-disasm-ia32.cc |
@@ -29,11 +29,11 @@ |
#include "src/v8.h" |
+#include "src/code-factory.h" |
#include "src/debug/debug.h" |
#include "src/disasm.h" |
#include "src/disassembler.h" |
#include "src/ia32/frames-ia32.h" |
-#include "src/ic/ic.h" |
#include "src/macro-assembler.h" |
#include "test/cctest/cctest.h" |
@@ -290,7 +290,7 @@ TEST(DisasmIa320) { |
__ bind(&L2); |
__ call(Operand(ebx, ecx, times_4, 10000)); |
__ nop(); |
- Handle<Code> ic(LoadIC::initialize_stub(isolate, NOT_INSIDE_TYPEOF)); |
+ Handle<Code> ic(CodeFactory::LoadIC(isolate, NOT_INSIDE_TYPEOF).code()); |
__ call(ic, RelocInfo::CODE_TARGET); |
__ nop(); |
__ call(FUNCTION_ADDR(DummyStaticFunction), RelocInfo::RUNTIME_ENTRY); |