Revision: 22237
Author:   [email protected]
Date:     Mon Jul  7 11:00:53 2014 UTC
Log:      Another round of MSVC fixes.

[email protected]

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

Modified:
 /branches/bleeding_edge/src/codegen.cc
 /branches/bleeding_edge/src/hydrogen-gvn.h
 /branches/bleeding_edge/src/hydrogen.cc
 /branches/bleeding_edge/src/objects-printer.cc

=======================================
--- /branches/bleeding_edge/src/codegen.cc      Mon Jul  7 09:57:29 2014 UTC
+++ /branches/bleeding_edge/src/codegen.cc      Mon Jul  7 11:00:53 2014 UTC
@@ -190,7 +190,7 @@
             function->end_position() - function->start_position() + 1;
         for (int i = 0; i < source_len; i++) {
           if (stream.HasMore()) {
-            os.put(stream.GetNext());
+            os << AsUC16(stream.GetNext());
           }
         }
         os << "\n\n";
=======================================
--- /branches/bleeding_edge/src/hydrogen-gvn.h  Mon Jul  7 09:57:29 2014 UTC
+++ /branches/bleeding_edge/src/hydrogen-gvn.h  Mon Jul  7 11:00:53 2014 UTC
@@ -55,7 +55,7 @@
 };


-class TrackedEffects;
+struct TrackedEffects;

 // Tracks global variable and inobject field loads/stores in a fine grained
// fashion, and represents them using the "special" dynamic side effects of the
=======================================
--- /branches/bleeding_edge/src/hydrogen.cc     Mon Jul  7 09:57:29 2014 UTC
+++ /branches/bleeding_edge/src/hydrogen.cc     Mon Jul  7 11:00:53 2014 UTC
@@ -3458,7 +3458,7 @@
               shared->end_position() - shared->start_position() + 1;
           for (int i = 0; i < source_len; i++) {
             if (stream.HasMore()) {
-              os.put(stream.GetNext());
+              os << AsUC16(stream.GetNext());
             }
           }
         }
=======================================
--- /branches/bleeding_edge/src/objects-printer.cc Mon Jul 7 09:57:29 2014 UTC +++ /branches/bleeding_edge/src/objects-printer.cc Mon Jul 7 11:00:53 2014 UTC
@@ -591,7 +591,7 @@
     }
   }
   for (int i = 0; i < len; i++) {
-    os.put(Get(i));
+    os << AsUC16(Get(i));
   }
   if (len != length()) {
     os << truncated_epilogue;

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