diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 02:48:14 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 02:48:14 +0000 |
| commit | fde86e706baf94deca9ed18b6c3ec684f6cadc3b (patch) | |
| tree | fec64f47a363a0d12fa0cee694e5e99a28ca0ffe /vm_dump.c | |
| parent | 15c84d07d3db4ae74bc93b7442bd7fed1d3f31b7 (diff) | |
| download | ruby-fde86e706baf94deca9ed18b6c3ec684f6cadc3b.tar.gz ruby-fde86e706baf94deca9ed18b6c3ec684f6cadc3b.tar.xz ruby-fde86e706baf94deca9ed18b6c3ec684f6cadc3b.zip | |
* vm.c, vm_dump.c: fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14378 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_dump.c')
| -rw-r--r-- | vm_dump.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -426,8 +426,8 @@ vm_analysis_insn(int insn) VALUE cv; if (usage_hash == 0) { - usage_hash = rb_intern("USAGE_ANALISYS_INSN"); - bigram_hash = rb_intern("USAGE_ANALISYS_INSN_BIGRAM"); + usage_hash = rb_intern("USAGE_ANALYSIS_INSN"); + bigram_hash = rb_intern("USAGE_ANALYSIS_INSN_BIGRAM"); } uh = rb_const_get(rb_cVM, usage_hash); if ((ihash = rb_hash_aref(uh, INT2FIX(insn))) == Qnil) { @@ -474,7 +474,7 @@ vm_analysis_operand(int insn, int n, VALUE op) VALUE cv; if (usage_hash == 0) { - usage_hash = rb_intern("USAGE_ANALISYS_INSN"); + usage_hash = rb_intern("USAGE_ANALYSIS_INSN"); } uh = rb_const_get(rb_cVM, usage_hash); @@ -524,7 +524,7 @@ vm_analysis_register(int reg, int isset) char buff[0x10]; int i; - usage_hash = rb_intern("USAGE_ANALISYS_REGS"); + usage_hash = rb_intern("USAGE_ANALYSIS_REGS"); for (i = 0; i < sizeof(regstrs) / sizeof(regstrs[0]); i++) { int j; |
