Changeset 12594
- Timestamp:
- Aug 16, 2009, 2:53:25 PM (15 years ago)
- Location:
- trunk/source/compiler
- Files:
-
- 2 edited
-
PPC/ppc2.lisp (modified) (1 diff)
-
X86/x862.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/compiler/PPC/ppc2.lisp
r12580 r12594 7408 7408 7409 7409 (defppc2 ppc2-flet flet (seg vreg xfer vars afuncs body p2decls) 7410 (ppc2-seq-fbind seg vreg xfer vars afuncs body p2decls)) 7410 (if (dolist (afunc afuncs) 7411 (unless (eql 0 (afunc-fn-refcount afunc)) 7412 (return t))) 7413 (ppc2-seq-fbind seg vreg xfer vars afuncs body p2decls) 7414 (with-ppc-p2-declarations p2-decls 7415 (ppc2-form seg vreg xfer body)))) 7411 7416 7412 7417 (defppc2 ppc2-labels labels (seg vreg xfer vars afuncs body p2decls) -
trunk/source/compiler/X86/x862.lisp
r12513 r12594 8297 8297 8298 8298 (defx862 x862-flet flet (seg vreg xfer vars afuncs body p2decls) 8299 (x862-seq-fbind seg vreg xfer vars afuncs body p2decls)) 8299 (if (dolist (afunc afuncs) 8300 (unless (eql 0 (afunc-fn-refcount afunc)) 8301 (return t))) 8302 (x862-seq-fbind seg vreg xfer vars afuncs body p2decls) 8303 (with-x86-p2-declarations p2decls 8304 (x862-form seg vreg xfer body)))) 8300 8305 8301 8306 (defx862 x862-labels labels (seg vreg xfer vars afuncs body p2decls)
Note:
See TracChangeset
for help on using the changeset viewer.
