new testcase for PR1308
authorChris Lattner <sabre@nondot.org>
Mon, 9 Apr 2007 00:45:42 +0000 (00:45 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 9 Apr 2007 00:45:42 +0000 (00:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35784 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll b/test/CodeGen/Generic/2007-04-08-MultipleFrameIndices.ll
new file mode 100644 (file)
index 0000000..cd7559d
--- /dev/null
@@ -0,0 +1,9 @@
+; RUN: llvm-as < %s | llc 
+; PR1308
+
+define i32 @stuff(i32, ...) {
+        %foo = alloca i8*
+        %bar = alloca i32*
+        %A = call i32 asm sideeffect "inline asm $0 $2 $3 $4", "=r,0,i,m,m"( i32 0, i32 1, i8** %foo, i32** %bar )
+        ret i32 %A
+}