commit | 3d79d3469130f12ed9a9f2e6b09d8c914c5e92d6 | [log] [tgz] |
---|---|---|
author | Caroline Tice <ctice@apple.com> | Thu Mar 24 21:11:26 2011 +0000 |
committer | Caroline Tice <ctice@apple.com> | Thu Mar 24 21:11:26 2011 +0000 |
tree | a222f8d25113bfae8d52383946c173a066c50a64 | |
parent | baf1f648fd0eb9295d8e61567d49d47fb9c28e19 [diff] |
Fix small bug in ThumbExpandImm_C; arguments to a call to 'bits' were in the wrong order. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@128237 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/Utility/ARMUtils.h b/source/Plugins/Process/Utility/ARMUtils.h index 7b614d8..71ee03a 100644 --- a/source/Plugins/Process/Utility/ARMUtils.h +++ b/source/Plugins/Process/Utility/ARMUtils.h
@@ -267,7 +267,7 @@ if (bits(imm12, 11, 10) == 0) { - switch (bits(imm12, 8, 9)) { + switch (bits(imm12, 9, 8)) { case 0: imm32 = abcdefgh; break;