Index: src/arm/simulator-arm.h |
=================================================================== |
--- src/arm/simulator-arm.h (revision 1793) |
+++ src/arm/simulator-arm.h (working copy) |
@@ -40,7 +40,7 @@ |
// When running without a simulator we call the entry directly. |
#define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ |
- entry(p0, p1, p2, p3, p4) |
+ reinterpret_cast<Object*>(entry(p0, p1, p2, p3, p4)) |
// Calculated the stack limit beyond which we will throw stack overflow errors. |
// This macro must be called from a C++ method. It relies on being able to take |