Bug fix, uint broke win32 build, use uint32_t

BUG=

Review URL: https://codereview.chromium.org/13861003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14180 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mvstanton@chromium.org 2013-04-09 09:02:28 +00:00
parent b7022fd2be
commit cfccd1333d
2 changed files with 2 additions and 2 deletions

View File

@ -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. // Make sure the floating point stack is either empty or has depth items.
ASSERT(depth <= 7); ASSERT(depth <= 7);

View File

@ -808,7 +808,7 @@ class MacroAssembler: public Assembler {
} }
// Insert code to verify that the x87 stack has the specified depth (0-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 // StatsCounter support