[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
This commit is contained in:
James Molloy 2015-11-18 11:37:32 +00:00
parent e2c844f486
commit 9e9da1f7c3

View 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
}