summaryrefslogtreecommitdiff
path: root/yjit_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'yjit_core.h')
-rw-r--r--yjit_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/yjit_core.h b/yjit_core.h
index f31fd58230..299dae81f5 100644
--- a/yjit_core.h
+++ b/yjit_core.h
@@ -192,8 +192,8 @@ typedef struct yjit_branch_entry
struct yjit_block_version *block;
// Positions where the generated code starts and ends
- uint8_t* start_addr;
- uint8_t* end_addr;
+ uint8_t *start_addr;
+ uint8_t *end_addr;
// Context right after the branch instruction
ctx_t src_ctx;
@@ -204,7 +204,7 @@ typedef struct yjit_branch_entry
struct yjit_block_version *blocks[2];
// Jump target addresses
- uint8_t* dst_addrs[2];
+ uint8_t *dst_addrs[2];
// Branch code generation function
branchgen_fn gen_fn;