mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Improve diagnostics for some parse errors. Not asserting when a user input
error is detected is a good thing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131005 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
96883ec700
commit
5d754bfa32
@ -583,9 +583,7 @@ Init *UnOpInit::Fold(Record *CurRec, MultiClass *CurMultiClass) {
|
||||
if (Record *D = (CurRec->getRecords()).getDef(Name))
|
||||
return new DefInit(D);
|
||||
|
||||
errs() << "Variable not defined: '" + Name + "'\n";
|
||||
assert(0 && "Variable not found");
|
||||
return 0;
|
||||
throw TGError(CurRec->getLoc(), "Undefined reference:'" + Name + "'\n");
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -813,15 +811,13 @@ static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
|
||||
OpInit *RHSo = dynamic_cast<OpInit*>(RHS);
|
||||
|
||||
if (!RHSo) {
|
||||
errs() << "!foreach requires an operator\n";
|
||||
assert(0 && "No operator for !foreach");
|
||||
throw TGError(CurRec->getLoc(), "!foreach requires an operator\n");
|
||||
}
|
||||
|
||||
TypedInit *LHSt = dynamic_cast<TypedInit*>(LHS);
|
||||
|
||||
if (!LHSt) {
|
||||
errs() << "!foreach requires typed variable\n";
|
||||
assert(0 && "No typed variable for !foreach");
|
||||
throw TGError(CurRec->getLoc(), "!foreach requires typed variable\n");
|
||||
}
|
||||
|
||||
if ((MHSd && DagType) || (MHSl && ListType)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user