Changeset 172149 in webkit for trunk/Source/JavaScriptCore/ftl/FTLState.cpp
- Timestamp:
- Aug 6, 2014, 8:44:57 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLState.cpp
r171391 r172149 33 33 #include "FTLJITCode.h" 34 34 #include "FTLJITFinalizer.h" 35 #include "InlineRuntimeSymbolTable.h"36 35 #include <llvm/InitializeLLVM.h> 37 36 #include <stdio.h> 37 38 #if ENABLE(FTL_NATIVE_CALL_INLINING) 39 #include "InlineRuntimeSymbolTable.h" 40 #endif 38 41 39 42 namespace JSC { namespace FTL { … … 51 54 { 52 55 56 #if ENABLE(FTL_NATIVE_CALL_INLINING) 53 57 #define SYMBOL_TABLE_ADD(symbol, file) \ 54 58 symbolTable.fastAdd(symbol, file); 55 59 FOR_EACH_LIBRARY_SYMBOL(SYMBOL_TABLE_ADD) 56 60 #undef SYMBOL_TABLE_ADD 61 #endif 57 62 58 63 switch (graph.m_plan.mode) {
Note:
See TracChangeset
for help on using the changeset viewer.