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 3840f78 commit 68e0588Copy full SHA for 68e0588
llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
@@ -775,7 +775,7 @@ struct RISCVOperand final : public MCParsedAsmOperand {
775
bool isUImm5Slist() const {
776
if (!isImm())
777
return false;
778
- RISCVMCExpr::VariantKind VK = RISCVMCExpr::VK_None;
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
779
int64_t Imm;
780
bool IsConstantImm = evaluateConstantImm(getImm(), Imm, VK);
781
return IsConstantImm &&
0 commit comments