mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
A bit of feedback from Chris that I missed; error rather than asserting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36619 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7bf1c272ab
commit
6f7c8ffd9a
@ -450,8 +450,11 @@ void RegisterInfoEmitter::run(std::ostream &OS) {
|
||||
std::vector<Record*> From = SubRegs[i]->getValueAsListOfDefs("From");
|
||||
std::vector<Record*> To = SubRegs[i]->getValueAsListOfDefs("To");
|
||||
|
||||
assert((From.size() == To.size()) &&
|
||||
"SubRegSet has mismatched from/to size");
|
||||
if (From.size() != To.size()) {
|
||||
cerr << "Error: register list and sub-register list not of equal length"
|
||||
<< " in SubRegSet\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// For each entry in from/to vectors, insert the to register at index
|
||||
for (unsigned ii = 0, ee = From.size(); ii != ee; ++ii)
|
||||
|
Loading…
x
Reference in New Issue
Block a user