[TableGen] Emit the correct error message.

llvm-svn: 243284
This commit is contained in:
Davide Italiano 2015-07-27 17:22:19 +00:00
parent 8f1d7fbe9e
commit a3effedb4a

View File

@ -196,7 +196,7 @@ struct SequenceOp : public SetTheory::Operator {
if (IntInit *II = dyn_cast<IntInit>(Expr->arg_begin()[2]))
To = II->getValue();
else
PrintFatalError(Loc, "From must be an integer: " + Expr->getAsString());
PrintFatalError(Loc, "To must be an integer: " + Expr->getAsString());
if (To < 0 || To >= (1 << 30))
PrintFatalError(Loc, "To out of range");