It's not necessary to do rounding for alloca operations when the requested
alignment is equal to the stack alignment.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40004 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/ARM/shifter_operand.ll b/test/CodeGen/ARM/shifter_operand.ll
new file mode 100644
index 0000000..313caed
--- /dev/null
+++ b/test/CodeGen/ARM/shifter_operand.ll
@@ -0,0 +1,15 @@
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep add | grep lsl
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep bic | grep asr
+
+int %test1(int %X, int %Y, ubyte %sh) {
+  %A = shl int %Y, ubyte %sh
+  %B = add int %X, %A
+  ret int %B
+}
+
+int %test2(int %X, int %Y, ubyte %sh) {
+  %A = shr int %Y, ubyte %sh
+  %B = xor int %A, -1
+  %C = and int %X, %B
+  ret int %C
+}