[LTO] Fix up test/tools/gold/X86/remarks.ll

It needs the same fixes as in test/LTO/X86/remarks.ll, but this test appears not to get run on my system (but does on the buildbot). Strange.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
James Molloy 2015-11-18 11:32:14 +00:00
parent 683e0e5156
commit e2c844f486

View File

@ -12,8 +12,11 @@
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
declare i32 @bar()
define i32 @f() {
ret i32 0
%a = call void @bar()
ret i32 %a
}
define i32 @_start() {