A8.6.14 ASR (immediate)

Add EmulateASRImm() Encodings T1, T2, and A1 to the opcodes tables.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@125592 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/Utility/ARMUtils.h b/source/Plugins/Process/Utility/ARMUtils.h
index 92da92d..a41ef72 100644
--- a/source/Plugins/Process/Utility/ARMUtils.h
+++ b/source/Plugins/Process/Utility/ARMUtils.h
@@ -54,6 +54,12 @@
     }
 }
 
+static inline uint32_t DecodeImmShift(const ARM_ShifterType shift_t, const uint32_t imm5)
+{
+    ARM_ShifterType dont_care;
+    return DecodeImmShift(shift_t, imm5, dont_care);
+}
+
 static inline ARM_ShifterType DecodeRegShift(const uint32_t type)
 {
     switch (type) {