Changeset 105035 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.h
- Timestamp:
- Jan 15, 2012, 8:03:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITCompiler.h
r103294 r105035 32 32 #include <assembler/MacroAssembler.h> 33 33 #include <bytecode/CodeBlock.h> 34 #include <dfg/DFG AssemblyHelpers.h>34 #include <dfg/DFGCCallHelpers.h> 35 35 #include <dfg/DFGFPRInfo.h> 36 36 #include <dfg/DFGGPRInfo.h> … … 148 148 // compilation, and also records information used in linking (e.g. a list of all 149 149 // call to be linked). 150 class JITCompiler : public AssemblyHelpers {150 class JITCompiler : public CCallHelpers { 151 151 public: 152 152 JITCompiler(JSGlobalData* globalData, Graph& dfg, CodeBlock* codeBlock) 153 : AssemblyHelpers(globalData, codeBlock)153 : CCallHelpers(globalData, codeBlock) 154 154 , m_graph(dfg) 155 155 {
Note:
See TracChangeset
for help on using the changeset viewer.