diff --git a/compiler/libpc300/sc2.c b/compiler/libpc300/sc2.c index 038d8e21..3514a0b8 100755 --- a/compiler/libpc300/sc2.c +++ b/compiler/libpc300/sc2.c @@ -1158,6 +1158,12 @@ static int command(void) preproc_expr(&val,NULL); if (val>0) sc_tabsize=(int)val; + + } else if (strcmp(str, "ignorewarn") == 0) { + cell val; + preproc_expr(&val, NULL); + pc_enablewarning(val, 0); + } else if (strcmp(str,"align")==0) { sc_alignnext=TRUE; } else if (strcmp(str,"unused")==0) {