diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2020-09-04 20:37:14 +0200 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2020-09-04 20:37:14 +0200 |
commit | 9772201345ab47cc820fd6c08247c133605f8b84 (patch) | |
tree | b38e4a1240e31787e68bb0e8ce92f6e5c168e72e /src/dolphin/Arm64Emitter.cpp | |
parent | 94d12c68b3cc8240d52c4123cf804641fa66b40a (diff) |
remove some UB
- savestates used to read a four bytes from a single byte value
- a few unassigned variables
- some other things
- also make the ROR macro an inline function
Diffstat (limited to 'src/dolphin/Arm64Emitter.cpp')
-rw-r--r-- | src/dolphin/Arm64Emitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphin/Arm64Emitter.cpp b/src/dolphin/Arm64Emitter.cpp index 97c93ba..289b20c 100644 --- a/src/dolphin/Arm64Emitter.cpp +++ b/src/dolphin/Arm64Emitter.cpp @@ -1631,7 +1631,7 @@ void ARM64XEmitter::ASR(ARM64Reg Rd, ARM64Reg Rm, int shift) int bits = Is64Bit(Rd) ? 64 : 32; SBFM(Rd, Rm, shift, bits - 1); } -void ARM64XEmitter::ROR_(ARM64Reg Rd, ARM64Reg Rm, int shift) +void ARM64XEmitter::ROR(ARM64Reg Rd, ARM64Reg Rm, int shift) { EXTR(Rd, Rm, Rm, shift); } |