diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 18:08:10 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 18:08:10 +0000 |
commit | 5e4e71a34852ccc8e871e384de19dccad347100c (patch) | |
tree | 76acd628eb4e40e1f3adadf2627c07bf233e515b /vm.h | |
parent | a8d47615da58b73423cf638f57b694d6ab463b9b (diff) | |
download | bundler-5e4e71a34852ccc8e871e384de19dccad347100c.tar.gz |
* vm.(c|h), yarvcore.(c|h) (yarvGlobalStateVersion): rename to
ruby_vm_global_state_version.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.h')
-rw-r--r-- | vm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -264,9 +264,9 @@ default: \ /* VM state version */ -#define GET_VM_STATE_VERSION() (yarvGlobalStateVersion) +#define GET_VM_STATE_VERSION() (vm_global_state_version) #define INC_VM_STATE_VERSION() \ - (yarvGlobalStateVersion = (yarvGlobalStateVersion+1) & 0x8fffffff) + (vm_global_state_version = (vm_global_state_version+1) & 0x8fffffff) #define BOP_PLUS 0x01 #define BOP_MINUS 0x02 |