Test that the code generator supports these intrinsics
authorChris Lattner <sabre@nondot.org>
Sat, 14 Feb 2004 02:51:40 +0000 (02:51 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 14 Feb 2004 02:51:40 +0000 (02:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11432 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/2004-02-13-FrameReturnAddress.llx [new file with mode: 0644]

diff --git a/test/CodeGen/X86/2004-02-13-FrameReturnAddress.llx b/test/CodeGen/X86/2004-02-13-FrameReturnAddress.llx
new file mode 100644 (file)
index 0000000..dae1ea9
--- /dev/null
@@ -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
+}