Revision: 23055
Author: [email protected]
Date: Mon Aug 11 18:54:40 2014 UTC
Log: MIPS: Fix test-simplified-lowering to pass without tf
implemention.
GenerateCode() only for SupportedTarget() in 3 places, as in the
other tests here.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/459913002
http://code.google.com/p/v8/source/detail?r=23055
Modified:
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
=======================================
---
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
Mon Aug 11 15:55:28 2014 UTC
+++
/branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc
Mon Aug 11 18:54:40 2014 UTC
@@ -407,9 +407,9 @@
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 @@
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 @@
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);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.