Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index d0c50e7206a0ae3eb6decfa7fb79cb17bb368eef..d7870917a031624b5f848610c2890538dbabf811 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -23,7 +23,7 @@ Callable make_callable(Stub& stub) { |
// static |
Callable CodeFactory::LoadIC(Isolate* isolate) { |
- LoadICTrampolineTFStub stub(isolate); |
+ LoadICTrampolineStub stub(isolate); |
return make_callable(stub); |
} |
@@ -35,7 +35,7 @@ Callable CodeFactory::ApiGetter(Isolate* isolate) { |
// static |
Callable CodeFactory::LoadICInOptimizedCode(Isolate* isolate) { |
- LoadICTFStub stub(isolate); |
+ LoadICStub stub(isolate); |
return make_callable(stub); |
} |