Adapt tcc-0.9.26's step to use pnut-exe instead of mes

This commit is contained in:
Laurent Huberdeau 2025-11-07 00:20:10 -05:00
parent ba90de8d85
commit 15a64feac3
12 changed files with 120 additions and 50 deletions

View file

@ -0,0 +1,8 @@
#if HAVE_FLOAT
if (t == VT_FLOAT)
vtop->c.f = -1.0 * 0.0;
else if (t == VT_DOUBLE)
vtop->c.d = -1.0 * 0.0;
else
vtop->c.ld = -1.0 * 0.0;
#endif