Index: test/cctest/compiler/test-run-stubs.cc |
diff --git a/test/cctest/compiler/test-run-stubs.cc b/test/cctest/compiler/test-run-stubs.cc |
index 4d2a363024abb0388b08052e08d53c50d8133a53..9c7998d7afa12dfeefdfbd15497935c262d4c03f 100644 |
--- a/test/cctest/compiler/test-run-stubs.cc |
+++ b/test/cctest/compiler/test-run-stubs.cc |
@@ -20,17 +20,17 @@ |
using namespace v8::internal::compiler; |
-TEST(RunOptimizedMathFloorStub) { |
+TEST(RunMathFloorStub) { |
HandleAndZoneScope scope; |
Isolate* isolate = scope.main_isolate(); |
// Create code and an accompanying descriptor. |
- MathFloorStub stub(isolate, TurboFanIC::CALL_FROM_OPTIMIZED_CODE); |
+ MathFloorStub stub(isolate); |
Handle<Code> code = stub.GenerateCode(); |
Zone* zone = scope.main_zone(); |
+ |
CompilationInfo info(&stub, isolate, zone); |
CallDescriptor* descriptor = Linkage::ComputeIncoming(zone, &info); |
- Handle<FixedArray> tv = isolate->factory()->NewFixedArray(10); |
// Create a function to call the code using the descriptor. |
Graph graph(zone); |
@@ -45,13 +45,10 @@ |
Node* numberParam = graph.NewNode(common.Parameter(1), start); |
Unique<HeapObject> u = Unique<HeapObject>::CreateImmovable(code); |
Node* theCode = graph.NewNode(common.HeapConstant(u)); |
- Unique<HeapObject> tvu = Unique<HeapObject>::CreateImmovable(tv); |
- Node* vector = graph.NewNode(common.HeapConstant(tvu)); |
Node* dummyContext = graph.NewNode(common.NumberConstant(0.0)); |
- Node* call = |
- graph.NewNode(common.Call(descriptor), theCode, js.UndefinedConstant(), |
- js.OneConstant(), vector, js.UndefinedConstant(), |
- numberParam, dummyContext, start, start); |
+ Node* call = graph.NewNode(common.Call(descriptor), theCode, |
+ js.UndefinedConstant(), js.UndefinedConstant(), |
+ numberParam, dummyContext, start, start); |
Node* ret = graph.NewNode(common.Return(), call, call, start); |
Node* end = graph.NewNode(common.End(1), ret); |
graph.SetStart(start); |