diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-10 06:43:13 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-10 06:43:13 +0000 |
| commit | 37b8092c3bec8ba2be7ebab82ca9099b5bcb23f2 (patch) | |
| tree | 20a660325ed4f457763cd1e173952e067d2c1261 | |
| parent | b04814bf711ed170c674ca874d28dba8faed9484 (diff) | |
* vm.c (vm_exec): refix r34162; suppress warning and add description.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34260 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | vm.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Jan 10 15:31:55 2012 NARUSE, Yui <naruse@ruby-lang.org> + + * vm.c (vm_exec): refix r34162; suppress warning and add description. + Tue Jan 10 15:13:58 2012 NARUSE, Yui <naruse@ruby-lang.org> * ext/readline/readline.c (readline_attempted_completion_function): @@ -1216,8 +1216,8 @@ vm_exec(rb_thread_t *th) vm_loop_start: result = vm_exec_core(th, initial); if ((state = th->state) != 0) { -#ifdef __llvm__ - rb_thread_t t = *th; +#ifdef __llvm__ /* LLVM optimization guard for TestEnumerator#test_nested_itaration */ + (void)__extension__({rb_thread_t t = *th; t;}); #endif err = result; th->state = 0; |
