mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-28 13:37:12 +00:00
Fix some compiler warnings (#416)
This commit is contained in:
parent
3869b47c35
commit
9ebbfb3ae2
6 changed files with 9 additions and 9 deletions
|
|
@ -207,11 +207,11 @@ namespace ZpIR
|
|||
// print imports
|
||||
printf("Imports:\n");
|
||||
for(auto itr : block->m_imports)
|
||||
printf(" reg: %s sym:0x%lux\n", getRegisterName(block, itr.reg).c_str(), itr.name);
|
||||
printf(" reg: %s sym:0x%llx\n", getRegisterName(block, itr.reg).c_str(), itr.name);
|
||||
// print exports
|
||||
printf("Exports:\n");
|
||||
for (auto itr : block->m_exports)
|
||||
printf(" reg: %s sym:0x%lux\n", getRegisterName(block, itr.reg).c_str(), itr.name);
|
||||
printf(" reg: %s sym:0x%llx\n", getRegisterName(block, itr.reg).c_str(), itr.name);
|
||||
// print instructions
|
||||
printf("Assembly:\n");
|
||||
IR::__InsBase* instruction = block->m_instructionFirst;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue