mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
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:
parent
e8f7a4bbee
commit
929db42702
12
test/CodeGen/stacksave-restore.ll
Normal file
12
test/CodeGen/stacksave-restore.ll
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user