summaryrefslogtreecommitdiff
path: root/yjit_codegen.h
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2021-09-29 14:58:01 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:41 -0400
commita10cf74e5c727cce2612958dca1c5ac6ece1a098 (patch)
treed0bb0cceb8b5b92adfe8edcd124c4a0211ff1cbd /yjit_codegen.h
parent5b68d14c2fcacc2f185a1933ce9b102cb06b1ba5 (diff)
style: align pointer "*" to the right
Diffstat (limited to 'yjit_codegen.h')
-rw-r--r--yjit_codegen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/yjit_codegen.h b/yjit_codegen.h
index 6d5fc27479..cbb3640dea 100644
--- a/yjit_codegen.h
+++ b/yjit_codegen.h
@@ -16,11 +16,11 @@ typedef enum codegen_status {
} codegen_status_t;
// Code generation function signature
-typedef codegen_status_t (*codegen_fn)(jitstate_t* jit, ctx_t* ctx, codeblock_t* cb);
+typedef codegen_status_t (*codegen_fn)(jitstate_t *jit, ctx_t *ctx, codeblock_t *cb);
-uint8_t* yjit_entry_prologue(codeblock_t* cb, const rb_iseq_t* iseq);
+uint8_t *yjit_entry_prologue(codeblock_t *cb, const rb_iseq_t *iseq);
-void yjit_gen_block(block_t* block, rb_execution_context_t* ec);
+void yjit_gen_block(block_t *block, rb_execution_context_t *ec);
void yjit_init_codegen(void);