diff options
| author | grischka <grischka> | 2013-08-28 22:55:05 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2013-08-28 22:55:05 +0200 |
| commit | 73faaea227a53e365dd75f1dba7a5071c7b5e541 (patch) | |
| tree | b7ff7cfd171d27d24ec4ceb4df8cf98f3341fd82 /tcctok.h | |
| parent | 69c2e7f96c95ba088657ce8bb9754c12c3e89397 (diff) | |
| download | tinycc-73faaea227a53e365dd75f1dba7a5071c7b5e541.tar.gz tinycc-73faaea227a53e365dd75f1dba7a5071c7b5e541.tar.bz2 | |
i386-gen: preserve fp control word in gen_cvt_ftoi
- 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
Diffstat (limited to 'tcctok.h')
| -rw-r--r-- | tcctok.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -194,8 +194,8 @@ DEF(TOK__remu, "_remu") #endif #ifdef TCC_TARGET_I386 - DEF(TOK___tcc_int_fpu_control, "__tcc_int_fpu_control") - DEF(TOK___tcc_fpu_control, "__tcc_fpu_control") + DEF(TOK___tcc_fpinit, "__tcc_fpinit") + DEF(TOK___tcc_cvt_ftol, "__tcc_cvt_ftol") #endif #ifdef TCC_ARM_EABI DEF(TOK___ashrdi3, "__aeabi_lasr") |
