| Index: test/cctest/test-code-stub-assembler.cc
|
| diff --git a/test/cctest/test-code-stub-assembler.cc b/test/cctest/test-code-stub-assembler.cc
|
| index 701cf186fd33aabf53f2c29769b277d1a37f9c89..6635d6b919825b8781361d901a505d1f98c16672 100644
|
| --- a/test/cctest/test-code-stub-assembler.cc
|
| +++ b/test/cctest/test-code-stub-assembler.cc
|
| @@ -1958,8 +1958,16 @@ TEST(CodeStubAssemblerGraphsCorrectness) {
|
|
|
| // Recompile some stubs here.
|
| Recompile<LoadGlobalICStub>(isolate, LoadGlobalICState(NOT_INSIDE_TYPEOF));
|
| + Recompile<LoadGlobalICTrampolineStub>(isolate,
|
| + LoadGlobalICState(NOT_INSIDE_TYPEOF));
|
| Recompile<LoadICStub>(isolate);
|
| + Recompile<LoadICTrampolineStub>(isolate);
|
| Recompile<KeyedLoadICTFStub>(isolate);
|
| + Recompile<KeyedLoadICTrampolineTFStub>(isolate);
|
| + Recompile<StoreICStub>(isolate, StoreICState(STRICT));
|
| + Recompile<StoreICTrampolineStub>(isolate, StoreICState(STRICT));
|
| + Recompile<KeyedStoreICTFStub>(isolate, StoreICState(STRICT));
|
| + Recompile<KeyedStoreICTrampolineTFStub>(isolate, StoreICState(STRICT));
|
| }
|
| v8_isolate->Dispose();
|
| }
|
|
|