aboutsummaryrefslogtreecommitdiff
path: root/tccrun.c
diff options
context:
space:
mode:
authorgrischka <grischka>2013-08-28 22:55:05 +0200
committergrischka <grischka>2013-08-28 22:55:05 +0200
commit73faaea227a53e365dd75f1dba7a5071c7b5e541 (patch)
treeb7ff7cfd171d27d24ec4ceb4df8cf98f3341fd82 /tccrun.c
parent69c2e7f96c95ba088657ce8bb9754c12c3e89397 (diff)
downloadtinycc-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 'tccrun.c')
-rw-r--r--tccrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tccrun.c b/tccrun.c
index d858ae6..b07ab0f 100644
--- a/tccrun.c
+++ b/tccrun.c
@@ -97,7 +97,7 @@ LIBTCCAPI int tcc_run(TCCState *s1, int argc, char **argv)
if (tcc_relocate(s1, TCC_RELOCATE_AUTO) < 0)
return -1;
- prog_main = tcc_get_symbol_err(s1, "main");
+ prog_main = tcc_get_symbol_err(s1, s1->runtime_main);
#ifdef CONFIG_TCC_BACKTRACE
if (s1->do_debug) {