MacOS X
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3462 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
1e1178d63f
commit
94564625f7
|
@ -191,7 +191,7 @@ case "$bytecc,$host" in
|
|||
# GNU C extensions disabled, but __GNUC__ still defined!
|
||||
bytecccompopts="-fno-defer-pop $gcc_warnings -U__GNUC__ -posix"
|
||||
bytecclinkopts="-posix";;
|
||||
cc,*-*-rhapsody*)
|
||||
*,*-*-rhapsody*)
|
||||
# Almost the same as NeXTStep
|
||||
bytecccompopts="-fno-defer-pop $gcc_warnings -DSHRINKED_GNUC"
|
||||
mathlib="";;
|
||||
|
|
|
@ -201,11 +201,12 @@ void unused_rules(void)
|
|||
for (i = 3; i < nrules; ++i)
|
||||
if (!rules_used[i]) ++nunused;
|
||||
|
||||
if (nunused)
|
||||
if (nunused){
|
||||
if (nunused == 1)
|
||||
fprintf(stderr, "1 rule never reduced\n");
|
||||
else
|
||||
fprintf(stderr, "%d rules never reduced\n", nunused);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue