1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add a testcase for the frameaddress and returnaddress intrinsics.

llvm-svn: 11434
This commit is contained in:
Chris Lattner 2004-02-14 02:55:47 +00:00
parent b8ecb673d1
commit 89f1862671

View File

@ -0,0 +1,14 @@
; RUN: llvm-as < %s | llc -march=c | grep builtin_return_address
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
}