Changeset 99681 in webkit
- Timestamp:
- Nov 9, 2011, 3:26:52 AM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/CMakeListsEfl.txt
r99678 r99681 30 30 dfg/DFGGraph.cpp 31 31 dfg/DFGJITCodeGenerator.cpp 32 dfg/DFGJITCodeGenerator64.cpp33 32 dfg/DFGJITCodeGenerator32_64.cpp 34 33 dfg/DFGJITCompiler.cpp … … 39 38 dfg/DFGRepatch.cpp 40 39 dfg/DFGSpeculativeJIT.cpp 41 dfg/DFGSpeculativeJIT64.cpp42 40 dfg/DFGSpeculativeJIT32_64.cpp 43 41 ) -
trunk/Source/JavaScriptCore/ChangeLog
r99678 r99681 1 2011-11-09 Sheriff Bot <webkit.review.bot@gmail.com> 2 3 Unreviewed, rolling out r99678. 4 http://trac.webkit.org/changeset/99678 5 https://bugs.webkit.org/show_bug.cgi?id=71882 6 7 broke the build with -Werror=unused-but-set-variable 8 (Requested by tronical_ on #webkit). 9 10 * CMakeListsEfl.txt: 11 * wtf/Platform.h: 12 1 13 2011-11-09 Andy Wingo <wingo@igalia.com> 2 14 -
trunk/Source/JavaScriptCore/wtf/Platform.h
r99678 r99681 883 883 #endif 884 884 885 /* Enable the DFG JIT on X86 and X86_64. Only tested on Mac and GNU/Linux. */ 886 #if !defined(ENABLE_DFG_JIT) && ENABLE(JIT) \ 887 && (CPU(X86) || CPU(X86_64)) \ 888 && (PLATFORM(MAC) || OS(LINUX)) 885 /* Currently for JSVALUE64, only tested on PLATFORM(MAC) */ 886 #if !defined(ENABLE_DFG_JIT) && ENABLE(JIT) && USE(JSVALUE64) && PLATFORM(MAC) 887 #define ENABLE_DFG_JIT 1 888 #endif 889 890 /* Currently DFG for X86 are only tested on Linux OS and Mac Platform */ 891 #if !defined(ENABLE_DFG_JIT) && ENABLE(JIT) && CPU(X86) && (PLATFORM(MAC) || OS(LINUX)) 889 892 #define ENABLE_DFG_JIT 1 890 893 #endif
Note:
See TracChangeset
for help on using the changeset viewer.