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 378d0ee commit 7f6ba4cCopy full SHA for 7f6ba4c
llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
@@ -262,10 +262,12 @@ class RISCVTTIImpl : public BasicTTIImplBase<RISCVTTIImpl> {
262
return TLI->isLegalElementTypeForRVV(ElemType);
263
}
264
265
- bool isLegalMaskedLoad(Type *DataType, Align Alignment) {
+ bool isLegalMaskedLoad(Type *DataType, Align Alignment,
266
+ unsigned /*AddressSpace*/) {
267
return isLegalMaskedLoadStore(DataType, Alignment);
268
- bool isLegalMaskedStore(Type *DataType, Align Alignment) {
269
+ bool isLegalMaskedStore(Type *DataType, Align Alignment,
270
271
272
273
0 commit comments