Changed two output lines in the LEF read subroutine to conform to
the standard message/warning/error method.
This commit is contained in:
parent
9ec5e8e747
commit
c229139150
1
Makefile
1
Makefile
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue