mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
fd8de0ee24
llvm-svn: 25269
13 lines
271 B
LLVM
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
|
|
}
|