Revision: 21369
Author:   [email protected]
Date:     Mon May 19 15:30:23 2014 UTC
Log:      MIPS: Allow comparison in UINT32 mode.

Port r21355 (932c5de)

Original commit message:
Shamelessly based on parts of https://codereview.chromium.org/288853003/. :-)

BUG=
[email protected]

Review URL: https://codereview.chromium.org/296453003

Patch from Balazs Kilvady <[email protected]>.
http://code.google.com/p/v8/source/detail?r=21369

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

=======================================
--- /branches/bleeding_edge/src/mips/lithium-codegen-mips.cc Mon May 19 07:47:09 2014 UTC +++ /branches/bleeding_edge/src/mips/lithium-codegen-mips.cc Mon May 19 15:30:23 2014 UTC
@@ -2271,7 +2271,7 @@
   LOperand* left = instr->left();
   LOperand* right = instr->right();
   bool is_unsigned = instr->hydrogen()->CheckFlag(HInstruction::kUint32);
-  Condition cc = TokenToCondition(instr->op(), is_unsigned);
+  Condition cond = TokenToCondition(instr->op(), is_unsigned);

   if (left->IsConstantOperand() && right->IsConstantOperand()) {
     // We can statically evaluate the comparison.

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