Revision: 7535
Author:   [email protected]
Date:     Thu Apr  7 02:18:06 2011
Log:      Fix build break on Mac.

BUG=
TEST=

Review URL: http://codereview.chromium.org/6816012
http://code.google.com/p/v8/source/detail?r=7535

Modified:
 /branches/bleeding_edge/src/arm/simulator-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/simulator-arm.cc Wed Apr 6 02:06:23 2011 +++ /branches/bleeding_edge/src/arm/simulator-arm.cc Thu Apr 7 02:18:06 2011
@@ -1618,7 +1618,7 @@
       address += 2;
     }
   }
-  ASSERT_EQ(((intptr_t)address) - operand_size, end_address);
+ ASSERT(reinterpret_cast<intptr_t>(address) - operand_size == end_address);
 }


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

Reply via email to