1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Regression/CodeGen/Generic/stacksave-restore.ll
Chris Lattner 1b60100f18 Oops, move misplaced test
llvm-svn: 27659
2006-04-13 17:18:42 +00:00

13 lines
271 B
LLVM

; 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
}