Changeset 168051 in webkit for trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp
- Timestamp:
- Apr 30, 2014, 3:22:11 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLOSREntry.cpp
r163844 r168051 71 71 JSValue valueOnStack = exec->r(virtualRegisterForArgument(argument).offset()).jsValue(); 72 72 JSValue reconstructedValue = values.argument(argument); 73 if (valueOnStack == reconstructedValue )73 if (valueOnStack == reconstructedValue || !argument) 74 74 continue; 75 75 dataLog("Mismatch between reconstructed values and the the value on the stack for argument arg", argument, " for ", *entryCodeBlock, " at bc#", bytecodeIndex, ":\n");
Note:
See TracChangeset
for help on using the changeset viewer.