Changeset 13710 for trunk/abcl/src/org/armedbear/lisp/jvm-instructions.lisp
- Timestamp:
- 12/27/11 19:50:08 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/jvm-instructions.lisp
r13535 r13710 234 234 (define-opcode freturn 174 1 nil nil) 235 235 (define-opcode dreturn 175 1 nil nil) 236 (define-opcode ireturn 172 1 -1 nil) 236 237 (define-opcode areturn 176 1 -1 nil) 237 238 (define-opcode return 177 1 0 nil) … … 569 570 166 ; if_acmpne 570 571 167 ; goto 572 172 ; ireturn 571 573 176 ; areturn 572 574 177 ; return … … 722 724 in ~A at index ~D: ~ 723 725 found ~S, expected ~S." 724 (compiland-name *current-compiland*) 726 (if *current-compiland* 727 (compiland-name *current-compiland*) 728 "<unknown>") 725 729 i instruction-depth 726 730 (+ depth instruction-stack))) … … 733 737 in ~A at index ~D: ~ 734 738 negative depth ~S." 735 (compiland-name *current-compiland*) 739 (if *current-compiland* 740 (compiland-name *current-compiland*) 741 "<unknown>") 736 742 i depth)) 737 743 (when (branch-p opcode)
Note: See TracChangeset
for help on using the changeset viewer.