From 146d3826a277ce05b628e1195903d2444c1d7524 Mon Sep 17 00:00:00 2001 From: David Green Date: Thu, 21 Mar 2019 14:35:06 +0000 Subject: [PATCH] Fixup opt-remarks.ll gold plugin test. NFC Now that rL356594 has added a TailCallElim pass to LTO, the call gets marked as tail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356669 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tools/gold/X86/opt-remarks.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tools/gold/X86/opt-remarks.ll b/test/tools/gold/X86/opt-remarks.ll index d5f7a748a0d..548f228d28d 100644 --- a/test/tools/gold/X86/opt-remarks.ll +++ b/test/tools/gold/X86/opt-remarks.ll @@ -12,7 +12,7 @@ ; Check that @f is inlined after optimizations. ; CHECK-LABEL: define i32 @_start -; CHECK-NEXT: %a.i = call i32 @bar() +; CHECK-NEXT: %a.i = tail call i32 @bar() ; CHECK-NEXT: ret i32 %a.i ; CHECK-NEXT: } -- 2.50.1