diff options
| author | Bill Wendling <isanbard@gmail.com> | 2019-12-02 16:19:01 -0800 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2019-12-02 16:19:35 -0800 |
| commit | f61099af9ec75412c52e53ed1e4704f4ffef01c6 (patch) | |
| tree | 17366433441b97185c24dcc9ac9b9f785c009e29 | |
| parent | 64f74bf72eb484aa32e1104050cb54745116decf (diff) | |
| download | bcm5719-llvm-f61099af9ec75412c52e53ed1e4704f4ffef01c6.tar.gz bcm5719-llvm-f61099af9ec75412c52e53ed1e4704f4ffef01c6.zip | |
Fix failing testcase to check for the correct output
| -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" |

