Changeset 43440 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 9, 2009, 9:01:17 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r43439 r43440 1 2009-05-09 Sebastian Andrzej Siewior <[email protected]> 2 3 Reviewed by Gustavo Noronha. 4 5 https://bugs.webkit.org/show_bug.cgi?id=25653 6 PLATFORM(X86_64) inherits ia64 7 8 __ia64__ is defined by gcc in an IA64 arch and has completely 9 nothing in common with X86-64 exept both are from Intel and have 10 an 64bit address space. That's it. Since code seems to expect x86 11 here, ia64 has to go. 12 13 * wtf/Platform.h: 14 1 15 2009-05-09 Gustavo Noronha Silva <[email protected]> 2 16 -
trunk/JavaScriptCore/wtf/Platform.h
r43384 r43440 221 221 /* PLATFORM(X86_64) */ 222 222 #if defined(__x86_64__) \ 223 || defined(__ia64__) \224 223 || defined(_M_X64) 225 224 #define WTF_PLATFORM_X86_64 1
Note:
See TracChangeset
for help on using the changeset viewer.