Dennis Clarke wrote: > (2) with the hacked in 60000 value > > real 3150.73 > user 2270.45 > sys 426.53
OK, this disproves the "infinite loop" and "gcc bug" hypotheses. You merely have a really slow program execution. > centauri$ echo $CFLAGS > -g -O0 -mcpu=21164 -mgas -mexplicit-relocs -fno-fast-math -fno-builtin > -fno-unsafe-math-optimizations -mno-soft-float -mfp-trap-mode=sui > -mfp-rounding-mode=n -mtrap-precision=i -mieee-with-inexact > -mieee-conformant Much of the slowness is probably due to the "-O0 -fno-builtin" options. "-O0" instead of "-O2" can be 3x to 10x slower. Bruno
