[llvm] f61099a - Fix failing testcase to check for the correct output
Bill Wendling via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 2 16:19:46 PST 2019
Author: Bill Wendling
Date: 2019-12-02T16:19:35-08:00
New Revision: f61099af9ec75412c52e53ed1e4704f4ffef01c6
URL: https://github.com/llvm/llvm-project/commit/f61099af9ec75412c52e53ed1e4704f4ffef01c6
DIFF: https://github.com/llvm/llvm-project/commit/f61099af9ec75412c52e53ed1e4704f4ffef01c6.diff
LOG: Fix failing testcase to check for the correct output
Added:
Modified:
llvm/test/Transforms/HotColdSplit/retain-section.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/HotColdSplit/retain-section.ll b/llvm/test/Transforms/HotColdSplit/retain-section.ll
index 8c0cf6049620..af611a758586 100644
--- a/llvm/test/Transforms/HotColdSplit/retain-section.ll
+++ b/llvm/test/Transforms/HotColdSplit/retain-section.ll
@@ -6,7 +6,7 @@ target triple = "x86_64-apple-macosx10.14.0"
; Retain section after cold code is split off.
; CHECK-LABEL: @fun
-; CHECK: call void @fun.cold.1{{.*}} section ".text.cold"
+; CHECK: call void @fun.cold.1{{.*}}
define void @fun() section ".text.cold" {
entry:
br i1 undef, label %if.then, label %if.else
@@ -19,15 +19,10 @@ if.else:
ret void
}
-; CHECK: define {{.*}} @foo{{.*}}#[[outlined_func_attr:[0-9]+]]
define void @foo() cold {
ret void
}
declare void @sink() cold
-; CHECK: define {{.*}} @fun.cold.1{{.*}}#[[outlined_func_attr]]
-
-; CHECK: attributes #[[outlined_func_attr]] = {
-; CHECK-SAME: cold
-; CHECK-SAME: minsize
+; CHECK: define {{.*}} @fun.cold.1{{.*}} section ".text.cold"
More information about the llvm-commits
mailing list