3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Reorder to prevent crash

This commit is contained in:
Miodrag Milanovic 2020-08-31 12:22:26 +02:00
parent d23e4b4dce
commit 04d5692a85

View file

@ -2475,7 +2475,7 @@ struct VerificPass : public Pass {
goto check_error; goto check_error;
} }
if (args[argidx] == "-app" && argidx+1 < GetSize(args)) if (argidx+1 < GetSize(args) && args[argidx] == "-app")
{ {
VerificFormalApplications vfa; VerificFormalApplications vfa;
auto apps = vfa.GetApps(); auto apps = vfa.GetApps();
@ -2519,7 +2519,7 @@ struct VerificPass : public Pass {
goto check_error; goto check_error;
} }
if (args[argidx] == "-pp" && argidx < GetSize(args)) if (argidx < GetSize(args) && args[argidx] == "-pp")
{ {
const char* filename = nullptr; const char* filename = nullptr;
const char* module = nullptr; const char* module = nullptr;
@ -2561,7 +2561,7 @@ struct VerificPass : public Pass {
goto check_error; goto check_error;
} }
if (args[argidx] == "-template" && argidx < GetSize(args)) if (argidx < GetSize(args) && args[argidx] == "-template")
{ {
if (!(argidx < GetSize(args))) if (!(argidx < GetSize(args)))
cmd_error(args, argidx, "No template type specified.\n"); cmd_error(args, argidx, "No template type specified.\n");