1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[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...

llvm-svn: 253453
This commit is contained in:
James Molloy 2015-11-18 11:37:32 +00:00
parent 5da47be927
commit 64eca23a0e

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
}