We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376c215 commit acbc314Copy full SHA for acbc314
llvm/lib/Target/RISCV/RISCVProcessors.td
@@ -18,7 +18,7 @@ class RISCVTuneInfo {
18
bits<16> CacheLineSize = 0;
19
bits<16> PrefetchDistance = 0;
20
bits<16> MinPrefetchStride = 1;
21
- bits<16> MaxPrefetchIterationsAhead = 65535;
+ bits<32> MaxPrefetchIterationsAhead = -1;
22
}
23
24
def RISCVTuneInfoTable : GenericTable {
llvm/lib/Target/RISCV/RISCVSubtarget.h
@@ -43,7 +43,7 @@ struct RISCVTuneInfo {
43
uint16_t CacheLineSize;
44
uint16_t PrefetchDistance;
45
uint16_t MinPrefetchStride;
46
- uint16_t MaxPrefetchIterationsAhead;
+ unsigned MaxPrefetchIterationsAhead;
47
};
48
49
#define GET_RISCVTuneInfoTable_DECL
0 commit comments