mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +00:00
Test that the code generator supports these intrinsics
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
14
test/CodeGen/X86/2004-02-13-FrameReturnAddress.llx
Normal file
14
test/CodeGen/X86/2004-02-13-FrameReturnAddress.llx
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
; RUN: llvm-as < %s | llc
|
||||||
|
|
||||||
|
declare sbyte* %llvm.returnaddress(uint)
|
||||||
|
declare sbyte* %llvm.frameaddress(uint)
|
||||||
|
|
||||||
|
sbyte *%test1() {
|
||||||
|
%X = call sbyte* %llvm.returnaddress(uint 0)
|
||||||
|
ret sbyte* %X
|
||||||
|
}
|
||||||
|
|
||||||
|
sbyte *%test2() {
|
||||||
|
%X = call sbyte* %llvm.frameaddress(uint 0)
|
||||||
|
ret sbyte* %X
|
||||||
|
}
|
Reference in New Issue
Block a user