Changeset 48525 in webkit for trunk/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Sep 18, 2009, 1:18:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r48067 r48525 194 194 ); 195 195 196 #elif COMPILER(GCC) && PLATFORM _ARM_ARCH(7)196 #elif COMPILER(GCC) && PLATFORM(ARM_THUMB2) 197 197 198 198 #if USE(JIT_STUB_ARGUMENT_VA_LIST) … … 453 453 ); 454 454 455 #elif COMPILER(GCC) && PLATFORM _ARM_ARCH(7)455 #elif COMPILER(GCC) && PLATFORM(ARM_THUMB2) 456 456 457 457 #if USE(JIT_STUB_ARGUMENT_VA_LIST) … … 517 517 ); 518 518 519 #elif COMPILER(GCC) && PLATFORM(ARM )519 #elif COMPILER(GCC) && PLATFORM(ARM_TRADITIONAL) 520 520 521 521 asm volatile ( … … 637 637 JIT::compileCTIMachineTrampolines(globalData, &m_executablePool, &m_ctiStringLengthTrampoline, &m_ctiVirtualCallLink, &m_ctiVirtualCall, &m_ctiNativeCallThunk); 638 638 639 #if PLATFORM _ARM_ARCH(7)639 #if PLATFORM(ARM_THUMB2) 640 640 // Unfortunate the arm compiler does not like the use of offsetof on JITStackFrame (since it contains non POD types), 641 641 // and the OBJECT_OFFSETOF macro does not appear constantish enough for it to be happy with its use in COMPILE_ASSERT … … 877 877 } while (0) 878 878 879 #if PLATFORM _ARM_ARCH(7)879 #if PLATFORM(ARM_THUMB2) 880 880 881 881 #define DEFINE_STUB_FUNCTION(rtype, op) \
Note:
See TracChangeset
for help on using the changeset viewer.