kernel/sdc: Add error on EOF when fetching strings

This commit is contained in:
Rowan Goemans 2024-08-12 15:05:57 +02:00
parent 5ff2b95839
commit 3e263f223c

View File

@ -194,6 +194,9 @@ struct SDCParser
s += c;
while (true) {
if (eof())
log_error("EOF while parsing string '%s'\n", s.c_str());
char c = peek();
if (!in_quotes && !in_braces && !escaped && (std::isblank(c) || c == ']')) {
break;
@ -361,6 +364,7 @@ struct SDCParser
net = ctx->ports.at(ety.name).net;
else
log_error("create_clock applies only to cells, cell pins, or IO ports (line %d)\n", lineno);
ctx->addClock(net->name, 1000.0f / period);
}
}