Revision: 16838
Author:   [email protected]
Date:     Thu Sep 19 15:20:13 2013 UTC
Log:      MIPS: Turn HCompareHoleAndBranch into a HUnaryControlInstruction.

Port r16805 (b106027)

BUG=
[email protected]

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

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

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

=======================================
--- /branches/bleeding_edge/src/mips/lithium-mips.cc Tue Sep 17 19:40:43 2013 UTC +++ /branches/bleeding_edge/src/mips/lithium-mips.cc Thu Sep 19 15:20:13 2013 UTC
@@ -1657,8 +1657,8 @@

 LInstruction* LChunkBuilder::DoCompareHoleAndBranch(
     HCompareHoleAndBranch* instr) {
-  LOperand* object = UseRegisterAtStart(instr->object());
-  return new(zone()) LCmpHoleAndBranch(object);
+  LOperand* value = UseRegisterAtStart(instr->value());
+  return new(zone()) LCmpHoleAndBranch(value);
 }


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