diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-08-25 13:09:03 +0200 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-06-16 11:56:00 +0200 |
commit | d57ee718ba056f7b5ec1bcebc6c6c79f1fe26993 (patch) | |
tree | aa1e2c6d0ef51d342bba7b0e567ac26f0cb987ec /src | |
parent | d208f5909c97c3caeaa4c1c95a37e618824ec199 (diff) |
remove debug printing
Diffstat (limited to 'src')
-rw-r--r-- | src/ARMJIT_x64/ARMJIT_Compiler.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ARMJIT_x64/ARMJIT_Compiler.cpp b/src/ARMJIT_x64/ARMJIT_Compiler.cpp index 6abb2bb..5e05446 100644 --- a/src/ARMJIT_x64/ARMJIT_Compiler.cpp +++ b/src/ARMJIT_x64/ARMJIT_Compiler.cpp @@ -385,15 +385,11 @@ CompiledBlock Compiler::CompileBlock(ARM* cpu, FetchedInstr instrs[], int instrs // TODO: this is ugly as a whole, do better RegCache = RegisterCache<Compiler, X64Reg>(this, instrs, instrsCount); - printf("block start %d\n", Thumb); - for (int i = 0; i < instrsCount; i++) { R15 += Thumb ? 2 : 4; CurInstr = instrs[i]; - printf("%x %d %d %d\n", CurInstr.Instr, CurInstr.SetFlags, CurInstr.Info.WriteFlags, CurInstr.Info.ReadFlags); - CompileFunc comp = Thumb ? T_Comp[CurInstr.Info.Kind] : A_Comp[CurInstr.Info.Kind]; |