diff options
author | Andy Wingo <wingo@pobox.com> | 2008-11-20 13:45:27 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-11-20 13:45:27 +0100 |
commit | f7e5296e0417b7d4bac3e4244e12f3ba342b63a7 (patch) | |
tree | d55b2bac724b4038ed37d84e4aaec9abc892b54e /benchmark | |
parent | 8680d53b8c66278eac6864d021172e9e97f7bfed (diff) |
late-variable-{ref,set} -> toplevel-{ref,set}
* benchmark/lib.scm:
* libguile/vm-i-system.c (toplevel-ref, toplevel-set):
* module/system/vm/assemble.scm (codegen):
* module/system/vm/disasm.scm (code-annotation):
s/late-variable/toplevel/. It's just a better name.
Diffstat (limited to 'benchmark')
-rw-r--r-- | benchmark/lib.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/lib.scm b/benchmark/lib.scm index 457fc41be..e6ffc7a55 100644 --- a/benchmark/lib.scm +++ b/benchmark/lib.scm @@ -69,7 +69,7 @@ ;; 5 (br-if-not 0 3) ;; -> 11 ;; 8 (make-int8 0) ;; 0 ;; 10 (return) -;; 11 (late-variable-ref 0) +;; 11 (toplevel-ref 0) ;; 13 (local-ref 0) ;; 15 (make-int8 1) ;; 1 ;; 17 (sub) |