Download Pelles C here: http://www.pellesc.se
Quote from: italofutura on April 14, 2026, 08:22:10 AMIs it because Pelles C binaries are not signed? If yes, why?Probably. Last time I checked the price for a certificate to be trusted was for a company wallet, not a personal one.
Quote from: John Z on April 14, 2026, 04:43:36 PMBut seriously yes there have been, and are issues, with using the optimizations and extensive testing is always needed for these. I have many programs using optimizations successfully.I my experience, enabling the optimizer on poorly written C code is more of a problem than the optimizer itself.
_text SEGMENT PARA PUBLIC 'CODE'
_main PROC NEAR
push eax
push offset @152
call _printf
add esp, 8
push 5050
push offset @154
call _printf
add esp, 8
xor eax, eax
ret
_main ENDP
.rdata SEGMENT DWORD PUBLIC 'CONST'
@154 label byte
db 73H, 75H, 6DH, 3DH, 25H, 64H, 0AH, 00H ; 0000 _ sum=%d..
@152 label byte
db 69H, 3DH, 25H, 64H, 0AH, 00H ; 0008 _ i=%d..
.rdata ENDSQuote from: Vortex on April 15, 2026, 10:35:59 AMBy the way, uncommenting the line below will output the correct result :
Page created in 0.042 seconds with 15 queries.