Im using tdm gcc compilers to compile my winapi projects, when i test some simple mandelbrot sse code 9maybe with other projests its like the same but i not tested everything), 5.1 generates larger executable 330kB against 270kB (though i not recompiled everything, only hot loop module and linked with already compiled (in 4.7) ones) and also noticalby slower code 23.5 ms /frame agianst 20 ms in 4.7
It is scary.. What can i do with it? (the rest of settings etc is the same i only rename the compiler folder from one to anither
Im using c-like code but compile in c++ mode
Does maybe someone know how to resolve it? (by resolve i mean make 5.1 build working at least as fast as 4.7, also would prefer the executable be smaller)
//edit
ps i made yet quick test
as i may compile loop module in 51 and link all in 47
compile loop 47 link 47: size 270k speed 20 ms
compile loop 51 link 51: size 330k speed 23.5 ms
compile loop 47 link 51: size 330k speed 20 ms
compile loop 51 link 47: size 270k speed 23.5 ms
it shows that speed drop comes by compile in 51 and size bloat comes from link 51
I checked the assembly and it shows some changes in generated code, though slight
4.7
5.1
It seems that the 5.1 version is unlucky one and it cst 15% slowdown