Changeset 36976 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Sep 26, 2008, 6:44:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r36972 r36976 451 451 case op_add: { 452 452 printBinaryOp(location, it, "add"); 453 ++it; 453 454 break; 454 455 } 455 456 case op_mul: { 456 457 printBinaryOp(location, it, "mul"); 458 ++it; 457 459 break; 458 460 } … … 467 469 case op_sub: { 468 470 printBinaryOp(location, it, "sub"); 471 ++it; 469 472 break; 470 473 } … … 483 486 case op_bitand: { 484 487 printBinaryOp(location, it, "bitand"); 488 ++it; 485 489 break; 486 490 } 487 491 case op_bitxor: { 488 492 printBinaryOp(location, it, "bitxor"); 493 ++it; 489 494 break; 490 495 } 491 496 case op_bitor: { 492 497 printBinaryOp(location, it, "bitor"); 498 ++it; 493 499 break; 494 500 }
Note:
See TracChangeset
for help on using the changeset viewer.