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

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 cdfcb976c7
commit 7ab8db4907

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
}