Revision: 22817
Author:   [email protected]
Date:     Mon Aug  4 12:51:34 2014 UTC
Log: TF: simplified-lowering tests accidentally ran on unsupported platforms.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/433423005
http://code.google.com/p/v8/source/detail?r=22817

Modified:
 /branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc

=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc Mon Aug 4 12:39:15 2014 UTC +++ /branches/bleeding_edge/test/cctest/compiler/test-simplified-lowering.cc Mon Aug 4 12:51:34 2014 UTC
@@ -330,6 +330,8 @@
     t.Return(load);
     t.LowerAllNodes();

+    if (!Pipeline::SupportedTarget()) continue;
+
     for (int j = -5; j <= 5; j++) {
       Smi* expected = Smi::FromInt(j);
       smis[i] = expected;
@@ -353,6 +355,8 @@
     t.Return(p0);
     t.LowerAllNodes();

+    if (!Pipeline::SupportedTarget()) continue;
+
     for (int j = -5; j <= 5; j++) {
       Smi* expected = Smi::FromInt(j);
       smis[i] = Smi::FromInt(-100);
@@ -379,6 +383,8 @@
       t.Return(load);
       t.LowerAllNodes();

+      if (!Pipeline::SupportedTarget()) continue;
+
       for (int k = -5; k <= 5; k++) {
         Smi* expected = Smi::FromInt(k);
         smis[i + j] = expected;
@@ -405,6 +411,8 @@
       t.Return(p0);
       t.LowerAllNodes();

+      if (!Pipeline::SupportedTarget()) continue;
+
       for (int k = -5; k <= 5; k++) {
         Smi* expected = Smi::FromInt(k);
         smis[i + j] = Smi::FromInt(-100);

--
--
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.

Reply via email to