Test that the code generator supports these intrinsics

llvm-svn: 11432
This commit is contained in:
Chris Lattner 2004-02-14 02:51:40 +00:00
parent dc632111bf
commit 3c4bc03c8a
1 changed files with 14 additions and 0 deletions

View 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
}