diff options
-rw-r--r-- | llvm/test/Transforms/HotColdSplit/retain-section.ll | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/llvm/test/Transforms/HotColdSplit/retain-section.ll b/llvm/test/Transforms/HotColdSplit/retain-section.ll index 8c0cf604962..af611a75858 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" |