projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
683e0e5
)
[LTO] Fix up test/tools/gold/X86/remarks.ll
author
James Molloy
<james.molloy@arm.com>
Wed, 18 Nov 2015 11:32:14 +0000
(11:32 +0000)
committer
James Molloy
<james.molloy@arm.com>
Wed, 18 Nov 2015 11:32:14 +0000
(11:32 +0000)
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
test/tools/gold/X86/remarks.ll
patch
|
blob
|
history
diff --git
a/test/tools/gold/X86/remarks.ll
b/test/tools/gold/X86/remarks.ll
index c4fa7f787f26fb7dba3e83cc06ab8ceb3da33c8a..6c528f814a9c43eba1aa3ece8a3b004b24cdb6ca 100644
(file)
--- a/
test/tools/gold/X86/remarks.ll
+++ b/
test/tools/gold/X86/remarks.ll
@@
-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() {