Index: test/cctest/compiler/test-simplified-lowering.cc |
diff --git a/test/cctest/compiler/test-simplified-lowering.cc b/test/cctest/compiler/test-simplified-lowering.cc |
index e46350bc62f36daf8f37f9649cc22fb103005fe2..af4d2d09d37f4b72ca36483ca7b5b3a5f67cb961 100644 |
--- a/test/cctest/compiler/test-simplified-lowering.cc |
+++ b/test/cctest/compiler/test-simplified-lowering.cc |
@@ -407,9 +407,9 @@ class AccessTester : public HandleAndZoneScope { |
t.StoreElement(access, ptr, t.Int32Constant(to_index), load); |
t.Return(t.jsgraph.TrueConstant()); |
t.LowerAllNodes(); |
- t.GenerateCode(); |
if (Pipeline::SupportedTarget()) { |
+ t.GenerateCode(); |
Object* result = t.Call(); |
CHECK_EQ(t.isolate()->heap()->true_value(), result); |
} |
@@ -429,9 +429,9 @@ class AccessTester : public HandleAndZoneScope { |
t.StoreField(to_access, ptr, load); |
t.Return(t.jsgraph.TrueConstant()); |
t.LowerAllNodes(); |
- t.GenerateCode(); |
if (Pipeline::SupportedTarget()) { |
+ t.GenerateCode(); |
Object* result = t.Call(); |
CHECK_EQ(t.isolate()->heap()->true_value(), result); |
} |
@@ -468,9 +468,9 @@ class AccessTester : public HandleAndZoneScope { |
index = t.environment()->Pop(); |
t.Return(t.jsgraph.TrueConstant()); |
t.LowerAllNodes(); |
- t.GenerateCode(); |
if (Pipeline::SupportedTarget()) { |
+ t.GenerateCode(); |
Object* result = t.Call(); |
CHECK_EQ(t.isolate()->heap()->true_value(), result); |
} |