Changeset 99681 in webkit


Ignore:
Timestamp:
Nov 9, 2011, 3:26:52 AM (14 years ago)
Author:
Simon Hausmann
Message:

Unreviewed, rolling out r99678.
http://trac.webkit.org/changeset/99678
https://bugs.webkit.org/show_bug.cgi?id=71882

broke the build with -Werror=unused-but-set-variable
(Requested by tronical_ on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-11-09

  • CMakeListsEfl.txt:
  • wtf/Platform.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/CMakeListsEfl.txt

    r99678 r99681  
    3030    dfg/DFGGraph.cpp
    3131    dfg/DFGJITCodeGenerator.cpp
    32     dfg/DFGJITCodeGenerator64.cpp
    3332    dfg/DFGJITCodeGenerator32_64.cpp
    3433    dfg/DFGJITCompiler.cpp
     
    3938    dfg/DFGRepatch.cpp
    4039    dfg/DFGSpeculativeJIT.cpp
    41     dfg/DFGSpeculativeJIT64.cpp
    4240    dfg/DFGSpeculativeJIT32_64.cpp
    4341)
  • trunk/Source/JavaScriptCore/ChangeLog

    r99678 r99681  
     12011-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
    1132011-11-09  Andy Wingo  <wingo@igalia.com>
    214
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r99678 r99681  
    883883#endif
    884884
    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))
    889892#define ENABLE_DFG_JIT 1
    890893#endif
Note: See TracChangeset for help on using the changeset viewer.