diff options
| author | Maxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com> | 2020-12-16 21:45:51 -0500 |
|---|---|---|
| committer | Alan Wu <XrXr@users.noreply.github.com> | 2021-10-20 18:19:26 -0400 |
| commit | 7d7e58d3521c797d772fdb5f974061c8a3758594 (patch) | |
| tree | f85258a44efaf7c7394015cb99b6342fecd50491 /ujit_codegen.c | |
| parent | 40b70ef7c762701d26539e5a401449d7f3733b5a (diff) | |
Implement branch stub logic
Diffstat (limited to 'ujit_codegen.c')
| -rw-r--r-- | ujit_codegen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ujit_codegen.c b/ujit_codegen.c index 1201c99c66..e39e418979 100644 --- a/ujit_codegen.c +++ b/ujit_codegen.c @@ -20,11 +20,11 @@ static st_table *gen_fns; // Code block into which we write machine code static codeblock_t block; -static codeblock_t* cb = NULL; +codeblock_t* cb = NULL; // Code block into which we write out-of-line machine code static codeblock_t outline_block; -static codeblock_t* ocb = NULL; +codeblock_t* ocb = NULL; // Ruby instruction entry static void |
