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 /libguile/vm-i-system.c | |
parent | 8680d53b8c66278eac6864d021172e9e97f7bfed (diff) | |
download | guile-f7e5296e0417b7d4bac3e4244e12f3ba342b63a7.tar.gz |
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 'libguile/vm-i-system.c')
-rw-r--r-- | libguile/vm-i-system.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/vm-i-system.c b/libguile/vm-i-system.c index 39dcb9d3b..4f24aae6e 100644 --- a/libguile/vm-i-system.c +++ b/libguile/vm-i-system.c @@ -285,7 +285,7 @@ VM_DEFINE_INSTRUCTION (variable_ref, "variable-ref", 0, 0, 1) NEXT; } -VM_DEFINE_INSTRUCTION (late_variable_ref, "late-variable-ref", 1, 0, 1) +VM_DEFINE_INSTRUCTION (toplevel_ref, "toplevel-ref", 1, 0, 1) { unsigned objnum = FETCH (); SCM what; @@ -367,7 +367,7 @@ VM_DEFINE_INSTRUCTION (variable_set, "variable-set", 0, 1, 0) NEXT; } -VM_DEFINE_INSTRUCTION (late_variable_set, "late-variable-set", 1, 1, 0) +VM_DEFINE_INSTRUCTION (toplevel_set, "toplevel-set", 1, 1, 0) { unsigned objnum = FETCH (); SCM what; |