summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/long.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2006-10-13 16:47:22 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2006-10-13 16:47:22 +0000
commit26a76d1024e944669a80dd86bcd0b81d7394a4f5 (patch)
tree08e0b028fee8a34f2d884213f0b04e6ca11c034f /test/CodeGen/ARM/long.ll
parent42b62f3f81b0c38954dd64b37cbb3c995f84073c (diff)
downloadllvm-26a76d1024e944669a80dd86bcd0b81d7394a4f5.tar.gz
llvm-26a76d1024e944669a80dd86bcd0b81d7394a4f5.tar.bz2
llvm-26a76d1024e944669a80dd86bcd0b81d7394a4f5.tar.xz
implement calls to functions that return long
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/long.ll')
-rw-r--r--test/CodeGen/ARM/long.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/long.ll b/test/CodeGen/ARM/long.ll
index 7a1c570372..f08ee6a336 100644
--- a/test/CodeGen/ARM/long.ll
+++ b/test/CodeGen/ARM/long.ll
@@ -37,3 +37,10 @@ entry:
%tmp1 = add ulong %y, 1
ret ulong %tmp1
}
+
+void %f7() {
+entry:
+ %tmp = call long %f8()
+ ret void
+}
+declare long %f8()