Skip to content

Commit 1dd0613

Browse files
committed
[X86] SkylakeClientModel - fix instregex typo. NFCI.
The extra '?' is useless as it only makes a single letter optional and we can only match the SI64 pattern anyway (V?)CVT(T?)SS2SIrr has a different scheduler def
1 parent 5618d2b commit 1dd0613

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86SchedSkylakeClient.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ def SKLWriteResGroup95 : SchedWriteRes<[SKLPort0,SKLPort5,SKLPort01]> {
11491149
let NumMicroOps = 3;
11501150
let ResourceCycles = [1,1,1];
11511151
}
1152-
def: InstRW<[SKLWriteResGroup95], (instregex "(V?)CVT(T?)SS2SI64?rr")>;
1152+
def: InstRW<[SKLWriteResGroup95], (instregex "(V?)CVT(T?)SS2SI64rr")>;
11531153

11541154
def SKLWriteResGroup96 : SchedWriteRes<[SKLPort0,SKLPort23,SKLPort05]> {
11551155
let Latency = 7;

0 commit comments

Comments
 (0)