[llvm] da47a80 - [PGO][test] Specify exact match for check labels (#117376)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 17:49:38 PST 2025
Author: Ken Matsui
Date: 2025-02-18T20:49:34-05:00
New Revision: da47a80d0398d4b5c680ab31a15f48293c731091
URL: https://github.com/llvm/llvm-project/commit/da47a80d0398d4b5c680ab31a15f48293c731091
DIFF: https://github.com/llvm/llvm-project/commit/da47a80d0398d4b5c680ab31a15f48293c731091.diff
LOG: [PGO][test] Specify exact match for check labels (#117376)
Some check labels in the basic.ll test are simply f[1-3], which matches
all cases where the function entry is hot, cold, or uncategorized. Since
the actual test results for each label have mixed cases, the current
labels can be considered ambiguous.
This patch specifies exact matches for each label to ensure more precise
validation and to prevent potential regressions in the future.
Added:
Modified:
llvm/test/Analysis/ProfileSummary/basic.ll
Removed:
################################################################################
diff --git a/llvm/test/Analysis/ProfileSummary/basic.ll b/llvm/test/Analysis/ProfileSummary/basic.ll
index c4f48ccafde86..0385c3a921c01 100644
--- a/llvm/test/Analysis/ProfileSummary/basic.ll
+++ b/llvm/test/Analysis/ProfileSummary/basic.ll
@@ -7,9 +7,9 @@
define void @f1() !prof !20 {
; CHECK-LABEL: f1 :hot
-; OVERRIDE-HOT-LABEL: f1
+; OVERRIDE-HOT-LABEL: f1{{$}}
; OVERRIDE-COLD-LABEL: f1 :hot
-; OVERRIDE-BOTH-LABEL: f1
+; OVERRIDE-BOTH-LABEL: f1{{$}}
; HOT-CUTOFF-0-LABEL: f1{{$}}
; COLD-CUTOFF-0-LABEL: f1 :cold
@@ -19,8 +19,8 @@ define void @f1() !prof !20 {
define void @f2() !prof !21 {
; CHECK-LABEL: f2 :cold
; OVERRIDE-HOT-LABEL: f2 :cold
-; OVERRIDE-COLD-LABEL: f2
-; OVERRIDE-BOTH-LABEL: f2
+; OVERRIDE-COLD-LABEL: f2{{$}}
+; OVERRIDE-BOTH-LABEL: f2 :cold
; HOT-CUTOFF-0-LABEL: f2 :cold
; COLD-CUTOFF-0-LABEL: f2 :cold
@@ -28,10 +28,10 @@ define void @f2() !prof !21 {
}
define void @f3() !prof !22 {
-; CHECK-LABEL: f3
-; OVERRIDE-HOT-LABEL: f3
-; OVERRIDE-COLD-LABEL: f3
-; OVERRIDE-BOTH-LABEL: f3
+; CHECK-LABEL: f3 :hot
+; OVERRIDE-HOT-LABEL: f3{{$}}
+; OVERRIDE-COLD-LABEL: f3 :hot
+; OVERRIDE-BOTH-LABEL: f3 :cold
; HOT-CUTOFF-0-LABEL: f3{{$}}
; COLD-CUTOFF-0-LABEL: f3 :cold
More information about the llvm-commits
mailing list