Added print_ptr() util function for debugging

This commit is contained in:
Maxime Chevalier-Boisvert 2020-10-14 14:03:31 -04:00 committed by Alan Wu
parent e5751768ba
commit 6f81bd2c76
3 changed files with 20 additions and 7 deletions

View file

@ -9,6 +9,7 @@
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 UJIT_UTILS_H