Changeset 99152 in webkit
- Timestamp:
- Nov 3, 2011, 2:10:41 AM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r99148 r99152 1 2011-11-03 Sheriff Bot <webkit.review.bot@gmail.com> 2 3 Unreviewed, rolling out r99089. 4 http://trac.webkit.org/changeset/99089 5 https://bugs.webkit.org/show_bug.cgi?id=71448 6 7 @plt postfix for math functions cause crash on Linux 32 (the 8 symbol is defined but it points to NULL) (Requested by 9 zherczeg on #webkit). 10 11 * dfg/DFGOperations.cpp: 12 * jit/JITStubs.cpp: 13 * jit/ThunkGenerators.cpp: 14 1 15 2011-11-02 Filip Pizlo <fpizlo@apple.com> 2 16 -
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r99089 r99152 43 43 #endif 44 44 45 #if (OS(LINUX) || OS(FREEBSD)) && (CPU(X86_64) || CPU(X86))45 #if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) 46 46 #define SYMBOL_STRING_RELOCATION(name) #name "@plt" 47 47 #elif CPU(X86) && COMPILER(MINGW) -
trunk/Source/JavaScriptCore/jit/JITStubs.cpp
r99089 r99152 81 81 #endif 82 82 83 #if (OS(LINUX) || OS(FREEBSD)) && (CPU(X86_64) || CPU(X86))83 #if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) 84 84 #define SYMBOL_STRING_RELOCATION(name) #name "@plt" 85 85 #elif CPU(X86) && COMPILER(MINGW) -
trunk/Source/JavaScriptCore/jit/ThunkGenerators.cpp
r99089 r99152 118 118 #endif 119 119 120 #if (OS(LINUX) || OS(FREEBSD)) && (CPU(X86_64) || CPU(X86))120 #if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) 121 121 #define SYMBOL_STRING_RELOCATION(name) #name "@plt" 122 122 #elif OS(DARWIN) || (CPU(X86_64) && COMPILER(MINGW) && !GCC_VERSION_AT_LEAST(4, 5, 0))
Note:
See TracChangeset
for help on using the changeset viewer.