1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/test/Regression/CodeGen/Generic/stacksave-restore.ll

13 lines
271 B
LLVM
Raw Normal View History

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