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:
Chris Lattner 2004-02-14 02:51:40 +00:00
parent cf89908381
commit 4a6f9a40b7

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
}