Changed two output lines in the LEF read subroutine to conform to

the standard message/warning/error method.
This commit is contained in:
Tim Edwards 2019-07-23 08:06:41 -04:00
parent 9ec5e8e747
commit c229139150
2 changed files with 3 additions and 2 deletions

View File

@ -58,6 +58,7 @@ libs:
(cd $$dir && ${MAKE} lib); done
depend: database/database.h
@echo --- making dependencies
${RM} */Depend
for dir in ${MODULES} ${UNUSED_MODULES} ${PROGRAMS}; do \
(cd $$dir && ${MAKE} depend); done

View File

@ -2448,7 +2448,7 @@ LefRead(inName, importForeign)
case LEF_SECTION_NONDEFAULTRULE:
token = LefNextToken(f, TRUE);
TxPrintf("LEF file: Defines non-default rule %s (ignored)\n", token);
LefError(LEF_INFO, "Defines non-default rule %s (ignored)\n", token);
sprintf(tsave, "%.127s", token);
LefSkipSection(f, tsave);
break;
@ -2457,7 +2457,7 @@ LefRead(inName, importForeign)
break;
case LEF_SECTION_SITE:
token = LefNextToken(f, TRUE);
TxPrintf("LEF file: Defines site %s (ignored)\n", token);
LefError(LEF_INFO, "Defines site %s (ignored)\n", token);
sprintf(tsave, "%.127s", token);
LefSkipSection(f, tsave);
break;