Skip to content

Commit a002a4e

Browse files
Add missing commas to fix build
1 parent c665ef2 commit a002a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/X86/X86PfmCounters.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def : PfmCountersDefaultBinding<DefaultPfmCounters>;
1919

2020
// Intel X86 Counters.
2121
defvar DefaultIntelPfmValidationCounters = [
22-
PfmValidationCounter<InstructionRetired, "INSTRUCTIONS_RETIRED">
22+
PfmValidationCounter<InstructionRetired, "INSTRUCTIONS_RETIRED">,
2323
PfmValidationCounter<L1DCacheLoadMiss, "MEM_LOAD_UOPS_RETIRED:L1_MISS">,
2424
PfmValidationCounter<L1ICacheLoadMiss, "L1-ICACHE-LOAD-MISSES">,
2525
PfmValidationCounter<DataTLBLoadMiss, "DTLB_LOAD_MISSES:MISS_CAUSES_A_WALK">,
@@ -205,7 +205,7 @@ def : PfmCountersBinding<"tigerlake", IceLakePfmCounters>;
205205

206206
// AMD X86 Counters.
207207
defvar DefaultAMDPfmValidationCounters = [
208-
PfmValidationCounter<InstructionRetired, "RETIRED_INSTRUCTIONS">
208+
PfmValidationCounter<InstructionRetired, "RETIRED_INSTRUCTIONS">,
209209
PfmValidationCounter<L1DCacheLoadMiss, "L1-DCACHE-LOAD-MISSES">,
210210
PfmValidationCounter<L1DCacheStoreMiss, "L1-DCACHE-STORE-MISSES">,
211211
PfmValidationCounter<L1ICacheLoadMiss, "L1-ICACHE-LOAD-MISSES">,

0 commit comments

Comments
 (0)