style: align pointer "*" to the right

This commit is contained in:
Alan Wu 2021-09-29 14:58:01 -04:00
parent 5b68d14c2f
commit a10cf74e5c
9 changed files with 515 additions and 515 deletions

View file

@ -6,10 +6,10 @@
#include <stdbool.h>
#include "yjit_asm.h"
void push_regs(codeblock_t* cb);
void pop_regs(codeblock_t* cb);
void print_int(codeblock_t* cb, x86opnd_t opnd);
void print_ptr(codeblock_t* cb, x86opnd_t opnd);
void print_str(codeblock_t* cb, const char* str);
void push_regs(codeblock_t *cb);
void pop_regs(codeblock_t *cb);
void print_int(codeblock_t *cb, x86opnd_t opnd);
void print_ptr(codeblock_t *cb, x86opnd_t opnd);
void print_str(codeblock_t *cb, const char *str);
#endif // #ifndef YJIT_UTILS_H