Changeset 118290 in webkit for trunk/Source/JavaScriptCore/dfg/DFGCapabilities.h
- Timestamp:
- May 23, 2012, 6:04:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGCapabilities.h
r118270 r118290 228 228 inline bool mightInlineFunctionForConstruct(CodeBlock*) { return false; } 229 229 230 inline CapabilityLevel canCompileOpcode(OpcodeID, CodeBlock*, Instruction*) { return false; }230 inline CapabilityLevel canCompileOpcode(OpcodeID, CodeBlock*, Instruction*) { return CannotCompile; } 231 231 inline bool canInlineOpcode(OpcodeID, CodeBlock*, Instruction*) { return false; } 232 inline CapabilityLevel canCompileOpcodes(CodeBlock*) { return false; }232 inline CapabilityLevel canCompileOpcodes(CodeBlock*) { return CannotCompile; } 233 233 inline bool canInlineOpcodes(CodeBlock*) { return false; } 234 234 #endif // ENABLE(DFG_JIT)
Note:
See TracChangeset
for help on using the changeset viewer.