Reviewers: Jakob,

Message:
Hi Jakob, have a look at the win32 break fix.
thx for noticing it first :D
--Michael

Description:
Bug fix, uint broke win32 build, use uint32_t


BUG=


Please review this at https://codereview.chromium.org/13861003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/ia32/macro-assembler-ia32.h
  M src/ia32/macro-assembler-ia32.cc


Index: src/ia32/macro-assembler-ia32.cc
diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc index 183ff525073c688cffaabd0c0e23051c3b185013..3228e8370e1ea9848ddbe0885462234784e885ce 100644
--- a/src/ia32/macro-assembler-ia32.cc
+++ b/src/ia32/macro-assembler-ia32.cc
@@ -2518,7 +2518,7 @@ void MacroAssembler::Ret(int bytes_dropped, Register scratch) {
 }


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

Index: src/ia32/macro-assembler-ia32.h
diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h index 19d4d93094b396bac1fd5afa769f3e16bf7c4f8b..159ae6e6b6ee23be381d5b19660903c43b64be62 100644
--- a/src/ia32/macro-assembler-ia32.h
+++ b/src/ia32/macro-assembler-ia32.h
@@ -808,7 +808,7 @@ class MacroAssembler: public Assembler {
   }

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