commit | 79d9807c87d825382124400bea544725ea4071fe | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Fri Oct 13 16:47:22 2006 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Fri Oct 13 16:47:22 2006 +0000 |
tree | 1b1759f225f2251bc964fb0d708db38261ce3664 | |
parent | 3874a168d09e62534b8ec3acef1043f8d70e4225 [diff] [blame] |
implement calls to functions that return long llvm-svn: 30929
diff --git a/llvm/test/Regression/CodeGen/ARM/long.ll b/llvm/test/Regression/CodeGen/ARM/long.ll index 7a1c570..f08ee6a 100644 --- a/llvm/test/Regression/CodeGen/ARM/long.ll +++ b/llvm/test/Regression/CodeGen/ARM/long.ll
@@ -37,3 +37,10 @@ %tmp1 = add ulong %y, 1 ret ulong %tmp1 } + +void %f7() { +entry: + %tmp = call long %f8() + ret void +} +declare long %f8()