Changeset 12622 for trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
- Timestamp:
- 04/18/10 09:26:22 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp
r12620 r12622 1342 1342 (when instruction-depth 1343 1343 (unless (= (the fixnum instruction-depth) (the fixnum (+ depth instruction-stack))) 1344 ( format t "~&Stack inconsistency at index ~D: found ~S, expected ~S.~%"1345 i instruction-depth (+ depth instruction-stack))1346 (internal-compiler-error "Stack inconsistency detected in ~A."1347 (compiland-name *current-compiland*)))1344 (internal-compiler-error 1345 "Stack inconsistency detected in ~A at index ~D: found ~S, expected ~S." 1346 (compiland-name *current-compiland*) 1347 i instruction-depth (+ depth instruction-stack))) 1348 1348 (return-from walk-code)) 1349 1349 (let ((opcode (instruction-opcode instruction)))
Note: See TracChangeset
for help on using the changeset viewer.