Fix failing testcase to check for the correct output
authorBill Wendling <isanbard@gmail.com>
Tue, 3 Dec 2019 00:19:01 +0000 (16:19 -0800)
committerBill Wendling <isanbard@gmail.com>
Tue, 3 Dec 2019 00:19:35 +0000 (16:19 -0800)
llvm/test/Transforms/HotColdSplit/retain-section.ll

index 8c0cf60..af611a7 100644 (file)
@@ -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"