From fa03ff99b2932d24860b51e0a292e36cfd6f21d6 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 23 May 2013 07:46:13 +0000 Subject: [PATCH] Add missing test from r175092. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182564 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/sibcall-6.ll | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/CodeGen/X86/sibcall-6.ll diff --git a/test/CodeGen/X86/sibcall-6.ll b/test/CodeGen/X86/sibcall-6.ll new file mode 100644 index 00000000000..2cdc3c4ec77 --- /dev/null +++ b/test/CodeGen/X86/sibcall-6.ll @@ -0,0 +1,13 @@ +; RUN: llc < %s -relocation-model=pic | FileCheck %s +; PR15250 + +target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128" +target triple = "i386-unknown-linux-gnu" + +declare void @callee1(i32 inreg, i32 inreg, i32 inreg) +define void @test1(i32 %a, i32 %b) nounwind { +; CHECK: test1: +; CHECK: calll callee1@PLT + tail call void @callee1(i32 inreg 0, i32 inreg 0, i32 inreg 0) nounwind + ret void +}