Changeset 48756 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 25, 2009, 9:10:49 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r48747 r48756 1 2009-09-25 Laszlo Gombos <[email protected]> 2 3 Reviewed by Gavin Barraclough. 4 5 Add ARM version detection rules for Symbian 6 https://bugs.webkit.org/show_bug.cgi?id=29715 7 8 * wtf/Platform.h: 9 1 10 2009-09-24 Xan Lopez <[email protected]> 2 11 -
trunk/JavaScriptCore/wtf/Platform.h
r48747 r48756 238 238 #endif 239 239 #define ARM_ARCH_VERSION 3 240 #if defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__) 240 #if defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__) || defined(__MARM_ARMV4__) 241 241 #undef ARM_ARCH_VERSION 242 242 #define ARM_ARCH_VERSION 4 … … 244 244 #if defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5T__) \ 245 245 || defined(__ARM_ARCH_5E__) || defined(__ARM_ARCH_5TE__) \ 246 || defined(__ARM_ARCH_5TEJ__) 246 || defined(__ARM_ARCH_5TEJ__) || defined(__MARM_ARMV5__) 247 247 #undef ARM_ARCH_VERSION 248 248 #define ARM_ARCH_VERSION 5 … … 250 250 #if defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) \ 251 251 || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) \ 252 || defined(__ARM_ARCH_6ZK__) 252 || defined(__ARM_ARCH_6ZK__) || defined(__ARMV6__) 253 253 #undef ARM_ARCH_VERSION 254 254 #define ARM_ARCH_VERSION 6
Note:
See TracChangeset
for help on using the changeset viewer.