Changeset 48744 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Sep 24, 2009, 7:40:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r47597 r48744 196 196 switch (m_interpreter->getOpcodeID(currentInstruction->u.opcode)) { 197 197 DEFINE_BINARY_OP(op_del_by_val) 198 #if !USE(JSVALUE32_64)198 #if USE(JSVALUE32) 199 199 DEFINE_BINARY_OP(op_div) 200 200 #endif … … 231 231 DEFINE_OP(op_debug) 232 232 DEFINE_OP(op_del_by_id) 233 #if USE(JSVALUE32_64)233 #if !USE(JSVALUE32) 234 234 DEFINE_OP(op_div) 235 235 #endif … … 380 380 DEFINE_SLOWCASE_OP(op_construct_verify) 381 381 DEFINE_SLOWCASE_OP(op_convert_this) 382 #if USE(JSVALUE32_64)382 #if !USE(JSVALUE32) 383 383 DEFINE_SLOWCASE_OP(op_div) 384 384 #endif
Note:
See TracChangeset
for help on using the changeset viewer.