Changeset 191455 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- Oct 22, 2015, 9:12:42 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r191191 r191455 43 43 { 44 44 if (Options::breakOnThrow()) { 45 dataLog("In call frame ", RawPointer(callFrame), " for code block ", *callFrame->codeBlock(), "\n"); 45 CodeBlock* codeBlock = callFrame->codeBlock(); 46 if (codeBlock) 47 dataLog("In call frame ", RawPointer(callFrame), " for code block ", *codeBlock, "\n"); 48 else 49 dataLog("In call frame ", RawPointer(callFrame), " with null CodeBlock\n"); 46 50 CRASH(); 47 51 }
Note:
See TracChangeset
for help on using the changeset viewer.