Minor fix.

llvm-svn: 19761
This commit is contained in:
Chris Lattner 2005-01-22 20:59:38 +00:00
parent 59a7f5c2f3
commit 97cf8fd4a9
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ void AsmWriterOperand::EmitCode(std::ostream &OS) const {
if (OperandType == isLiteralTextOperand)
OS << "O << \"" << Str << "\"; ";
else
OS << Str << "(MI, " << MIOpNo << ", MVT::" << getName(OpVT) << "); ";
OS << Str << "(MI, " << MIOpNo << ", MVT::" << getEnumName(OpVT) << "); ";
}