Ignore:
Timestamp:
Jul 29, 2013, 11:42:00 PM (12 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Fix make distcheck.

Source/JavaScriptCore:

  • GNUmakefile.list.am: Add missing files to compilation.
  • bytecode/CodeBlock.cpp: Add a ENABLE(FTL_JIT) #if block to

include FTL header files not included in the compilation.

  • dfg/DFGDriver.cpp: Ditto.
  • dfg/DFGPlan.cpp: Ditto.

Source/ThirdParty/ANGLE:

  • GNUmakefile.am: Add missing header files to compilation.

Source/WebCore:

  • GNUmakefile.list.am: Add missing header file to compilation.

Source/WebKit2:

  • GNUmakefile.list.am: Add missing header file to compilation.

Source/WTF:

  • GNUmakefile.list.am: Add missing files to compilation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r153381 r153460  
    3939#include "DFGWorklist.h"
    4040#include "Debugger.h"
    41 #include "FTLJITCode.h"
    4241#include "Interpreter.h"
    4342#include "JIT.h"
     
    6059#if ENABLE(DFG_JIT)
    6160#include "DFGOperations.h"
     61#endif
     62
     63#if ENABLE(FTL_JIT)
     64#include "FTLJITCode.h"
    6265#endif
    6366
Note: See TracChangeset for help on using the changeset viewer.