testcase for the llvm.stacksave/llvm.stackrestore intrinsics.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25269 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-01-13 02:25:08 +00:00
parent e8f7a4bbee
commit 929db42702

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | llc
declare sbyte* %llvm.stacksave()
declare void %llvm.stackrestore(sbyte*)
int *%test(uint %N) {
%tmp = call sbyte* %llvm.stacksave()
%P = alloca int, uint %N
call void %llvm.stackrestore(sbyte* %tmp)
%Q = alloca int, uint %N
ret int* %P
}