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/call.ll b/test/CodeGen/ARM/call.ll
new file mode 100644
index 0000000..c7e10b1
--- /dev/null
+++ b/test/CodeGen/ARM/call.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep {mov lr, pc}
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+v5t | grep blx
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mtriple=arm-linux-gnueabi\
+; RUN:   -relocation-model=pic | grep {PLT}
+
+%t = weak global int ()* null
+declare void %g(int, int, int, int)
+
+void %f() {
+	call void %g( int 1, int 2, int 3, int 4 )
+	ret void
+}
+
+void %g() {
+	%tmp = load int ()** %t
+	%tmp = tail call int %tmp( )
+	ret void
+}