mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
rb_execution_context_t: pack bits, 256 -> 252 bytes (on 32-bit)
Maybe execution contexts will become more common. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
98d0ccc86a
commit
62c3610583
2 changed files with 7 additions and 3 deletions
|
@ -268,7 +268,7 @@ VALUE rb_get_message(VALUE exc);
|
|||
void
|
||||
rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo)
|
||||
{
|
||||
volatile int raised_flag = ec->raised_flag;
|
||||
volatile uint8_t raised_flag = ec->raised_flag;
|
||||
volatile VALUE errat = Qundef;
|
||||
volatile VALUE emesg = Qundef;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue