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;