diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-12 13:32:15 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-12 13:32:15 +0000 |
| commit | 2d9129c4bcff3c06a695c42e44f6fa8f91a1b5ff (patch) | |
| tree | fe39154725b375b20774ec2ac150ea0a49977dd2 | |
| parent | d605f1e59685982e1f9371f8f7cbab646ecc410b (diff) | |
| download | ruby-2d9129c4bcff3c06a695c42e44f6fa8f91a1b5ff.tar.gz ruby-2d9129c4bcff3c06a695c42e44f6fa8f91a1b5ff.tar.xz ruby-2d9129c4bcff3c06a695c42e44f6fa8f91a1b5ff.zip | |
merges r21414 from trunk into ruby_1_9_1.
* cont.c (cont_restore_1): should not be inlined.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | cont.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Jan 10 19:05:13 2009 Koichi Sasada <ko1@atdot.net> + + * cont.c (cont_restore_1): should not be inlined. + Fri Jan 9 13:20:08 2009 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tk.rb: rescue abnormal Encoding.locale_charmap value. @@ -289,7 +289,7 @@ cont_capture(volatile int *stat) } } -NORETURN(static void cont_restore_1(rb_context_t *)); +NOINLINE(NORETURN(static void cont_restore_1(rb_context_t *))); static void cont_restore_1(rb_context_t *cont) |
