1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_exec.c: Correct predefined macro name. This typo is introduced by

r36534 and should be backported to ruby_2_0_0.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2013-03-18 01:45:12 +00:00
parent d883d756d1
commit 9b113a0d6b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Mar 18 10:41:06 2013 NARUSE, Yui <naruse@ruby-lang.org>
* vm_exec.c: Correct predefined macro name. This typo is introduced by
r36534 and should be backported to ruby_2_0_0.
Mon Mar 18 03:18:00 2013 Zachary Scott <zachary@zacharyscott.net>
* array.c: Typo in Array#delete by Timo Sand [GH fixes #258]

View file

@ -18,7 +18,7 @@ static void vm_analysis_insn(int insn);
#if VMDEBUG > 0
#define DECL_SC_REG(type, r, reg) register type reg_##r
#elif defined(__GNUC__) && defined(_x86_64__)
#elif defined(__GNUC__) && defined(__x86_64__)
#define DECL_SC_REG(type, r, reg) register type reg_##r __asm__("r" reg)
#elif defined(__GNUC__) && defined(__i386__)