restrained error messages for lint + misc.

This commit is contained in:
dick
1989-11-02 18:17:59 +00:00
parent 81d26fa096
commit 88bd7de0b1
7 changed files with 49 additions and 32 deletions

View File

@@ -138,9 +138,6 @@ if_statement
'('
expression(&expr)
{
#ifdef DEBUG
print_expr("expr in IF", expr);
#endif DEBUG
opnd2test(&expr, IF);
if (is_cp_cst(expr)) {
/* The comparison has been optimized
@@ -361,7 +358,7 @@ switch_statement
{
code_startswitch(&expr);
#ifdef LINT
start_switch_part(expr);
start_switch_part(is_cp_cst(expr));
#endif LINT
}
')'