Revision: 14180
Author:   [email protected]
Date:     Tue Apr  9 02:02:28 2013
Log:      Bug fix, uint broke win32 build, use uint32_t

BUG=

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

Modified:
 /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc
 /branches/bleeding_edge/src/ia32/macro-assembler-ia32.h

=======================================
--- /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Tue Apr 9 01:42:57 2013 +++ /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Tue Apr 9 02:02:28 2013
@@ -2518,7 +2518,7 @@
 }


-void MacroAssembler::VerifyX87StackDepth(uint depth) {
+void MacroAssembler::VerifyX87StackDepth(uint32_t depth) {
   // Make sure the floating point stack is either empty or has depth items.
   ASSERT(depth <= 7);

=======================================
--- /branches/bleeding_edge/src/ia32/macro-assembler-ia32.h Tue Apr 9 01:42:57 2013 +++ /branches/bleeding_edge/src/ia32/macro-assembler-ia32.h Tue Apr 9 02:02:28 2013
@@ -808,7 +808,7 @@
   }

   // Insert code to verify that the x87 stack has the specified depth (0-7)
-  void VerifyX87StackDepth(uint depth);
+  void VerifyX87StackDepth(uint32_t depth);

// ---------------------------------------------------------------------------
   // StatsCounter support

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