diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-07 00:48:03 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-07 00:48:03 +0000 |
commit | fba68f4c31d636e557c4264527ad880e7fedfc27 (patch) | |
tree | a47cdf5546f185efc3996f978f8b181334f29d64 /vm_exec.c | |
parent | 4f8376c655eee5038584e26534457b94f78229f6 (diff) | |
download | ruby-fba68f4c31d636e557c4264527ad880e7fedfc27.tar.gz |
* vm_exec.c (vm_exec_core): Treat clang as non gcc on this
context: It has __asm__ but doesn't works well.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_exec.c')
-rw-r--r-- | vm_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -40,7 +40,7 @@ vm_exec_core(rb_thread_t *th, VALUE initial) #if OPT_STACK_CACHING #if 0 -#elif __GNUC__ && __x86_64 +#elif __GNUC__ && __x86_64 && !__clang__ DECL_SC_REG(VALUE, a, "12"); DECL_SC_REG(VALUE, b, "13"); #else @@ -49,12 +49,12 @@ vm_exec_core(rb_thread_t *th, VALUE initial) #endif #endif -#if __GNUC__ && __i386__ +#if __GNUC__ && __i386__ && !__clang__ DECL_SC_REG(VALUE *, pc, "di"); DECL_SC_REG(rb_control_frame_t *, cfp, "si"); #define USE_MACHINE_REGS 1 -#elif __GNUC__ && __x86_64__ +#elif __GNUC__ && __x86_64__ && !__clang__ DECL_SC_REG(VALUE *, pc, "14"); DECL_SC_REG(rb_control_frame_t *, cfp, "15"); #define USE_MACHINE_REGS 1 |