mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +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:
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
|
||||||
|
}
|
Reference in New Issue
Block a user