Revision: 12049
Author:   [email protected]
Date:     Wed Jul 11 13:11:04 2012
Log: Unbreak MSVC build by respecting explicit FmtElm constructor. This is
a real bug caught by MSVC but not g++.

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10700162
http://code.google.com/p/v8/source/detail?r=12049

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

=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.cc Wed Jul 11 09:17:02 2012 +++ /branches/bleeding_edge/src/hydrogen-instructions.cc Wed Jul 11 13:11:04 2012
@@ -1479,7 +1479,7 @@
   if (has_int32_value_) {
     stream->Add("%d ", int32_value_);
   } else if (has_double_value_) {
-    stream->Add("%lf ", double_value_);
+    stream->Add("%lf ", FmtElm(double_value_));
   } else {
     handle()->ShortPrint(stream);
   }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to