diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-20 08:39:24 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-20 08:39:24 +0000 |
commit | 587135e9941306efee72346b0d00c82d8e8574e0 (patch) | |
tree | 5e592b488094d72dbb46acd9258b565ad3dca25e /vm.c | |
parent | a903f89a23f0babeefabda3adb7b8d4c26fc4a0b (diff) | |
download | ruby-587135e9941306efee72346b0d00c82d8e8574e0.tar.gz |
* vm.c (vm_exec): remove workaround for LLVM because r34278 fixes it.
* vm_insnhelper.c (vm_call_cfunc): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1216,9 +1216,6 @@ vm_exec(rb_thread_t *th) vm_loop_start: result = vm_exec_core(th, initial); if ((state = th->state) != 0) { -#ifdef __llvm__ /* LLVM optimization guard for TestEnumerator#test_nested_iteration */ - (void)__extension__({rb_thread_t t = *th; t;}); -#endif err = result; th->state = 0; goto exception_handler; |