Revision: 14788
Author:   [email protected]
Date:     Thu May 23 18:11:33 2013
Log:      MIPS: Fix assert on ARM

Port r14781 (a3491cb7)

BUG=

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

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

=======================================
--- /branches/bleeding_edge/src/mips/lithium-mips.cc Thu May 23 18:10:23 2013 +++ /branches/bleeding_edge/src/mips/lithium-mips.cc Thu May 23 18:11:33 2013
@@ -2076,7 +2076,7 @@
     if (instr->representation().IsDouble()) {
       obj = UseTempRegister(instr->elements());
     } else {
-      ASSERT(instr->representation().IsTagged());
+      ASSERT(instr->representation().IsSmiOrTagged());
       obj = UseRegisterAtStart(instr->elements());
     }
     result = new(zone()) LLoadKeyed(obj, key);

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