hielvc wrote:It apears that it might be a tweak faster too.
I think it depends on the kind of application we are talking about. You benchmarked an I/O intensive program (man).
I tried a few experiments with my photon tracer, which is definitely compute bound:
22.8s -O2 -ffastmath
22.0s -O2 -ffastmath -fomit-frame-pointer
16.8s -O2 -ffastmath -msse -mfpmath=sse
15.8s -O2 -ffastmath -fomit-frame-pointer -msse -mfpmath=sse
Obviously using sse instead of x87 is a bigger concern for me, but you'll notice all other things being equal, that fomit-frame-pointer seems to be better for me (for my compute bound program).
Brian