From: David Green Date: Thu, 21 Mar 2019 14:35:06 +0000 (+0000) Subject: Fixup opt-remarks.ll gold plugin test. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=146d3826a277ce05b628e1195903d2444c1d7524;p=llvm 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 --- 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: }