Revision: 15893
Author:   [email protected]
Date:     Fri Jul 26 02:00:43 2013
Log:      Disable Smi representation support for HMathMinMax

because it's incomplete on x64.

BUG=v8:2808
[email protected]

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

Modified:
 /branches/bleeding_edge/src/hydrogen-instructions.h

=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.h Thu Jul 25 05:22:23 2013 +++ /branches/bleeding_edge/src/hydrogen-instructions.h Fri Jul 26 02:00:43 2013
@@ -4792,7 +4792,8 @@
   virtual Representation RepresentationFromInputs() {
     Representation left_rep = left()->representation();
     Representation right_rep = right()->representation();
-    Representation result = Representation::Smi();
+ // TODO(verwaest): Initialize to Smi once lithium-codegen has been fixed.
+    Representation result = Representation::Integer32();
     result = result.generalize(left_rep);
     result = result.generalize(right_rep);
     if (result.IsTagged()) return Representation::Double();

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