Changeset 192155 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Nov 9, 2015, 6:15:21 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r191897 r192155 1489 1489 int hasBreakpointFlag = (++it)->u.operand; 1490 1490 printLocationAndOp(out, exec, location, it, "debug"); 1491 out.printf("%s %d", debugHookName(debugHookID), hasBreakpointFlag); 1491 out.printf("%s, %d", debugHookName(debugHookID), hasBreakpointFlag); 1492 break; 1493 } 1494 case op_assert: { 1495 int condition = (++it)->u.operand; 1496 int line = (++it)->u.operand; 1497 printLocationAndOp(out, exec, location, it, "assert"); 1498 out.printf("%s, %d", registerName(condition).data(), line); 1492 1499 break; 1493 1500 }
Note:
See TracChangeset
for help on using the changeset viewer.