Revision: 17248
Author:   [email protected]
Date:     Wed Oct 16 23:15:30 2013 UTC
Log: MIPS: Add support for Token::NE and Token::NE_STRICT to TokenToCondition.

Port r17239 (c203175f)

Original commit message:
This is required to be able to use these tokens with
HCompareNumericAndBranch.

BUG=
[email protected]

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

Modified:
 /branches/bleeding_edge/src/mips/lithium-codegen-mips.cc

=======================================
--- /branches/bleeding_edge/src/mips/lithium-codegen-mips.cc Tue Oct 15 23:12:15 2013 UTC +++ /branches/bleeding_edge/src/mips/lithium-codegen-mips.cc Wed Oct 16 23:15:30 2013 UTC
@@ -2178,6 +2178,10 @@
     case Token::EQ_STRICT:
       cond = eq;
       break;
+    case Token::NE:
+    case Token::NE_STRICT:
+      cond = ne;
+      break;
     case Token::LT:
       cond = is_unsigned ? lo : lt;
       break;

--
--
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/groups/opt_out.

Reply via email to