mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Don't fail tablegen immediately after failing to set a value.
Instead allow the variable to be declared, but don't attach an initializer. This allows more than a single error to be emitted before we exit. Test case to follow soon in another patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214375 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b71c54fb7d
commit
0a8cc452b1
@ -1734,7 +1734,10 @@ Init *TGParser::ParseDeclaration(Record *CurRec,
|
|||||||
Init *Val = ParseValue(CurRec, Type);
|
Init *Val = ParseValue(CurRec, Type);
|
||||||
if (!Val ||
|
if (!Val ||
|
||||||
SetValue(CurRec, ValLoc, DeclName, std::vector<unsigned>(), Val))
|
SetValue(CurRec, ValLoc, DeclName, std::vector<unsigned>(), Val))
|
||||||
return nullptr;
|
// Return the name, even if an error is thrown. This is so that we can
|
||||||
|
// continue to make some progress, even without the value having been
|
||||||
|
// initialized.
|
||||||
|
return DeclName;
|
||||||
}
|
}
|
||||||
|
|
||||||
return DeclName;
|
return DeclName;
|
||||||
|
Loading…
Reference in New Issue
Block a user