Changeset 154935 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
- Timestamp:
- Aug 31, 2013, 7:02:47 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r154902 r154935 1287 1287 return reinterpret_cast<char*>(vm->getCTIStub(throwExceptionFromCallSlowPathGenerator).code().executableAddress()); 1288 1288 } 1289 codeBlock = &functionExecutable->generatedBytecodeFor(kind);1289 codeBlock = functionExecutable->codeBlockFor(kind); 1290 1290 if (execCallee->argumentCountIncludingThis() < static_cast<size_t>(codeBlock->numParameters())) 1291 1291 codePtr = functionExecutable->generatedJITCodeWithArityCheckFor(kind); … … 1362 1362 codeBlock = 0; 1363 1363 else { 1364 codeBlock = &jsCast<FunctionExecutable*>(callee->executable())->generatedBytecodeForCall();1364 codeBlock = jsCast<FunctionExecutable*>(callee->executable())->codeBlockForCall(); 1365 1365 if (execCallee->argumentCountIncludingThis() < static_cast<size_t>(codeBlock->numParameters())) 1366 1366 return false;
Note:
See TracChangeset
for help on using the changeset viewer.