From: James Molloy <james.molloy@arm.com>
Date: Wed, 18 Nov 2015 11:37:32 +0000 (+0000)
Subject: [LTO] Buildbot appeasing take 2
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9e9da1f7c366a6d63bd4ef839d679612211a199a;p=oota-llvm.git

[LTO] Buildbot appeasing take 2

Let's try again. This time using the right function signature. It's a real pity I can't run this on a darwin machine...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253453 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/test/tools/gold/X86/remarks.ll b/test/tools/gold/X86/remarks.ll
index 6c528f814a9..d50afbfe6bb 100644
--- a/test/tools/gold/X86/remarks.ll
+++ b/test/tools/gold/X86/remarks.ll
@@ -15,7 +15,7 @@ target triple = "x86_64-unknown-linux-gnu"
 declare i32 @bar()
 
 define i32 @f() {
-  %a = call void @bar()
+  %a = call i32 @bar()
   ret i32 %a
 }