liberty warn instead of error for include file
This commit is contained in:
parent
a8a9b27077
commit
097086eaad
|
|
@ -547,7 +547,8 @@ libertyIncludeBegin(const char *filename)
|
||||||
liberty_line = 1;
|
liberty_line = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
libertyParseError("cannot open include file %s.", filename);
|
liberty_report->fileWarn(25, sta::liberty_filename, sta::liberty_line,
|
||||||
|
"cannot open include file %s.", filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -584,6 +585,12 @@ libertyParseError(const char *fmt, ...)
|
||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
deleteLibertyGroups()
|
||||||
|
{
|
||||||
|
liberty_group_stack.deleteContentsClear();
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue