2008-08-26 22:23 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* contrib/hbct/atnum.c
     ! Workaround for PelleC 5.00.1 bug in AMD64 mode.
       'fatal error: Internal error: reduce_tree()'
       I didn't test if it actually works, but at least now 
       is compiles.
       Bug reported on Pelles C forum.
This commit is contained in:
Viktor Szakats
2008-08-26 20:24:13 +00:00
parent d2f974642f
commit 88acfc5661
2 changed files with 12 additions and 0 deletions

View File

@@ -8,6 +8,14 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-08-26 22:23 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbct/atnum.c
! Workaround for PelleC 5.00.1 bug in AMD64 mode.
'fatal error: Internal error: reduce_tree()'
I didn't test if it actually works, but at least now
is compiles.
Bug reported on Pelles C forum.
2008-08-26 22:13 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/common/hbver.c
* hb_verCompiler() buffer size cleanup.

View File

@@ -251,7 +251,11 @@ static void do_atnum( int iSwitch )
case DO_ATNUM_ATNUM:
/* ATNUM */
#if (__POCC__ >= 500) && defined(HB_OS_WIN_64)
hb_retnl( pc - pcString + sIgnore + 1 );
#else
hb_retnl( pc - ( pcString - sIgnore ) + 1 );
#endif
break;
}
}