Changeset 171391 in webkit for trunk/Source/JavaScriptCore/ftl/FTLState.cpp
- Timestamp:
- Jul 22, 2014, 9:33:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLState.cpp
r163027 r171391 33 33 #include "FTLJITCode.h" 34 34 #include "FTLJITFinalizer.h" 35 #include "InlineRuntimeSymbolTable.h" 36 #include <llvm/InitializeLLVM.h> 37 #include <stdio.h> 35 38 36 39 namespace JSC { namespace FTL { … … 47 50 , compactUnwindSize(0) 48 51 { 52 53 #define SYMBOL_TABLE_ADD(symbol, file) \ 54 symbolTable.fastAdd(symbol, file); 55 FOR_EACH_LIBRARY_SYMBOL(SYMBOL_TABLE_ADD) 56 #undef SYMBOL_TABLE_ADD 57 49 58 switch (graph.m_plan.mode) { 50 59 case FTLMode: {
Note:
See TracChangeset
for help on using the changeset viewer.