Changeset 50211 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 28, 2009, 4:06:19 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r50204 r50211 1 2009-10-28 Gavin Barraclough <[email protected]> 2 3 Reviewed by NOBODY (build fix!). 4 5 * jit/JIT.h: 6 1 7 2009-10-26 Holger Hans Peter Freyther <[email protected]> 2 8 -
trunk/JavaScriptCore/jit/JIT.h
r50201 r50211 39 39 #endif 40 40 41 #define ASSERT_JIT_OFFSET(actual, expected) ASSERT_WITH_MESSAGE(actual == expected, "JIT Offset \"%s\" shou d be %d, not %d.\n", #expected, actual, expected);41 #define ASSERT_JIT_OFFSET(actual, expected) ASSERT_WITH_MESSAGE(actual == expected, "JIT Offset \"%s\" should be %d, not %d.\n", #expected, static_cast<int>(actual), static_cast<int>(expected)); 42 42 43 43 #include "CodeBlock.h"
Note:
See TracChangeset
for help on using the changeset viewer.