Fix --error-limit option being ignored.
This commit is contained in:
parent
28c61b548b
commit
9cf61cef9d
2
Changes
2
Changes
|
|
@ -11,6 +11,8 @@ indicates the contributor was also the author of the fix; Thanks!
|
|||
|
||||
**** Fix $display with uppercase %M.
|
||||
|
||||
**** Fix --error-limit option being ignored.
|
||||
|
||||
* Verilator 3.713 2009/08/04
|
||||
|
||||
** Support constant function calls for parameters. [many!]
|
||||
|
|
|
|||
|
|
@ -577,7 +577,7 @@ void V3Options::parseOptsList(FileLine* fl, int argc, char** argv) {
|
|||
}
|
||||
else if ( !strcmp (sw, "-error-limit") ) {
|
||||
shift;
|
||||
m_inlineMult = atoi(argv[i]);
|
||||
m_errorLimit = atoi(argv[i]);
|
||||
}
|
||||
else if ( !strcmp (sw, "-inline-mult") ) {
|
||||
shift;
|
||||
|
|
|
|||
Loading…
Reference in New Issue