| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | win32: fix libtcc support | grischka | 2013-09-10 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | For "tcc -run file.c", I was trying to initialize the FP control in a function in libtcc1.a (_runmain) before calling main. Unfortunately that turned out to cause problems with for example libtcc_test since such usage doesn't necessarily define a 'main' function. So for tcc -run we're back to relying on the FP control word that is set in the startup code of tcc.exe rsp. libtcc.dll. This fixes part of commit 73faaea227a53e365dd75f1dba7a5071c7b5e541 | ||||
| * | i386-gen: preserve fp control word in gen_cvt_ftoi | grischka | 2013-08-28 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Use runtime function for conversion - Also initialize fp with tcc -run on windows This fixes a bug where double x = 1.0; double y = 1.0000000000000001; double z = x < y ? 0 : sqrt (x*x - y*y); caused a bad sqrt because rounding precision for the x < y comparison was different to the one used within the sqrt function. This also fixes a bug where printf("%d, %d", (int)pow(10, 2), (int)pow(10, 2)); would print 100, 99 Unrelated: win32: document relative include & lib lookup win32: normalize_slashes: do not mirror silly gcc behavior This reverts part of commit 8a81f9e1036637e21a47e14fb56bf64133546890 winapi: add missing WINAPI decl. for some functions | ||||
| * | win32: register SEH in startup code (i386 only) | grischka | 2010-10-19 | 1 | -2/+1 |
| | | | | | Needed to handle signal() etc. with msvcrt | ||||
| * | win32: reformat examples, crt etc | grischka | 2009-07-18 | 1 | -8/+8 |
| | | |||||
| * | _controlfp fix (grischka) | bellard | 2005-04-17 | 1 | -35/+35 |
| | | |||||
| * | win32 merge | bellard | 2005-04-14 | 1 | -0/+35 |
