FindMessages criticalError

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-02-28 14:51:09 -08:00
parent d31372ef9a
commit a6425a3364
4 changed files with 5 additions and 4 deletions

View File

@ -610,7 +610,8 @@ delay_work_get_residues(delay_work *D,int term_index)
// calculate_poles_res // calculate_poles_res
// //
void arnoldi1::calculate_poles_res(delay_work *D,double rdrive) void arnoldi1::calculate_poles_res(delay_work *D,
double rdrive)
{ {
if (n > D->nmax) delay_work_alloc(D,n); if (n > D->nmax) delay_work_alloc(D,n);
double *p = D->poles; double *p = D->poles;

View File

@ -61,7 +61,7 @@ foreach subdir $subdirs {
set files [glob -nocomplain [file join $subdir "*.{cc,hh,yy,ll,i}"]] set files [glob -nocomplain [file join $subdir "*.{cc,hh,yy,ll,i}"]]
set files_c [concat $files_c $files] set files_c [concat $files_c $files]
} }
set warn_regexp_c {(?:(?:->critical|->warn|->fileWarn|->error|->fileError|libWarn|libError| warn)\(|tclArgError\(interp,\s*)([0-9]+),.*(".+")} set warn_regexp_c {(?:(?:->critical|->warn|->fileWarn|->error|->fileError|criticalError|libWarn|libError)\(|tclArgError\(interp,\s*)([0-9]+),.*(".+")}
set files_tcl {} set files_tcl {}
foreach subdir $subdirs { foreach subdir $subdirs {

View File

@ -842,7 +842,7 @@ Power::evalBddDuty(DdNode *bdd,
else if (bdd == Cudd_ReadLogicZero(bdd_.cuddMgr())) else if (bdd == Cudd_ReadLogicZero(bdd_.cuddMgr()))
return 0.0; return 0.0;
else else
criticalError(1100, "unknown cudd constant"); criticalError(2400, "unknown cudd constant");
} }
else { else {
float duty0 = evalBddDuty(Cudd_E(bdd), inst); float duty0 = evalBddDuty(Cudd_E(bdd), inst);

View File

@ -678,7 +678,7 @@ Levelize::setLevelIncr(Vertex *vertex,
} }
max_level_ = max(level, max_level_); max_level_ = max(level, max_level_);
if (level >= Graph::vertex_level_max) if (level >= Graph::vertex_level_max)
criticalError(617, "maximum logic level exceeded"); criticalError(618, "maximum logic level exceeded");
} }
void void