diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-13 16:47:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-13 16:47:22 +0000 |
commit | 26a76d1024e944669a80dd86bcd0b81d7394a4f5 (patch) | |
tree | 08e0b028fee8a34f2d884213f0b04e6ca11c034f /test/CodeGen/ARM/long.ll | |
parent | 42b62f3f81b0c38954dd64b37cbb3c995f84073c (diff) |
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.ll | 7 |
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() |