Skip to content

Commit 31e8c6c

Browse files
committed
unrecognized constant pool value -> unrecognized constant pool type
1 parent f02a178 commit 31e8c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ void RISCVAsmPrinter::emitMachineConstantPoolValue(
10981098
auto *GV = RCPV->getGlobalValue();
10991099
MCSym = getSymbol(GV);
11001100
} else {
1101-
assert(RCPV->isExtSymbol() && "unrecognized constant pool value");
1101+
assert(RCPV->isExtSymbol() && "unrecognized constant pool type");
11021102
auto Sym = RCPV->getSymbol();
11031103
MCSym = GetExternalSymbolSymbol(Sym);
11041104
}

0 commit comments

Comments
 (0)