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 f7c1088a36
commit cf81fc70a4
1 changed files with 14 additions and 0 deletions

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
}