Skip to content

Commit 13d99e3

Browse files
authored
[RISCV] Fix wrong use of SiFiveP400GetVLMAX in RISCVSchedSiFiveP600 (llvm#171562)
There is no difference of functionality and I believe this is a copy-paste mistake. :-)
1 parent 7464b86 commit 13d99e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/RISCV/RISCVSchedSiFiveP600.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class SiFiveP600GetVLMAX<string mx, int sew> {
4848
}
4949

5050
class SiFiveP600StridedLdStLatency<string mx, int sew> {
51-
defvar VL = SiFiveP400GetVLMAX<mx, sew>.val;
51+
defvar VL = SiFiveP600GetVLMAX<mx, sew>.val;
5252
int val = !cond(
5353
!eq(VL, 2): 13,
5454
!eq(VL, 4): 18,

0 commit comments

Comments
 (0)