diff options
author | Owen Anderson <resistor@mac.com> | 2010-12-14 19:42:53 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-12-14 19:42:53 +0000 |
commit | 86abd48fd01080f08eec1b46f92c90308b03bfd4 (patch) | |
tree | 1248494671d410cdd8e9d67cd13fa5e1134e39a9 /lib/Target/ARM/ARMAsmBackend.cpp | |
parent | bfce678de7b509a497ac6d91f29e749adab7e40c (diff) |
Fix a small bug (typo?) in the fixup for Thumb1 CBZ/CBNZ instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAsmBackend.cpp')
-rw-r--r-- | lib/Target/ARM/ARMAsmBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMAsmBackend.cpp b/lib/Target/ARM/ARMAsmBackend.cpp index 63f6e14394..096d340a62 100644 --- a/lib/Target/ARM/ARMAsmBackend.cpp +++ b/lib/Target/ARM/ARMAsmBackend.cpp @@ -238,7 +238,7 @@ static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) { case ARM::fixup_arm_thumb_cb: { // Offset by 4 and don't encode the lower bit, which is always 0. uint32_t Binary = (Value - 4) >> 1; - return ((Binary & 0x20) << 9) | ((Binary & 0x1f) << 3); + return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3); } case ARM::fixup_arm_thumb_br: // Offset by 4 and don't encode the lower bit, which is always 0. |