diff options
Diffstat (limited to 'test/CodeGen/X86/tailcall-void.ll')
-rw-r--r-- | test/CodeGen/X86/tailcall-void.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/X86/tailcall-void.ll b/test/CodeGen/X86/tailcall-void.ll new file mode 100644 index 0000000..4e578d1 --- /dev/null +++ b/test/CodeGen/X86/tailcall-void.ll @@ -0,0 +1,6 @@ +; RUN: llc < %s -march=x86 -tailcallopt | grep TAILCALL +define fastcc void @i1test(i32, i32, i32, i32) { + entry: + tail call fastcc void @i1test( i32 %0, i32 %1, i32 %2, i32 %3) + ret void +} |