[LTO] Buildbot appeasing take 2
authorJames Molloy <james.molloy@arm.com>
Wed, 18 Nov 2015 11:37:32 +0000 (11:37 +0000)
committerJames Molloy <james.molloy@arm.com>
Wed, 18 Nov 2015 11:37:32 +0000 (11:37 +0000)
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

test/tools/gold/X86/remarks.ll

index 6c528f814a9c43eba1aa3ece8a3b004b24cdb6ca..d50afbfe6bb27aff0347aa329b555176e7ac4048 100644 (file)
@@ -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
 }