testcase for print(ftos(pawn.mema)) slightly changed, now not using a temporary location

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-11 18:09:45 +02:00
parent fda4687ece
commit 3f234591da

View file

@ -100,11 +100,19 @@ FUNCTION(main, TYPE_VOID);
STATE(ASSIGN(STOREP_F, ENTFIELD(pawn, mema), f5));
CALL(ftos)
CALLPARAM(ENTFIELD(pawn, mema))
#if 0
ENDCALLWITH(output, STATE(ASSIGN(STORE_F, vi, output)));
CALL(print)
CALLPARAM(vi)
ENDCALL();
#else
ENDCALLWITH(output,
CALL(print)
CALLPARAM(output)
ENDCALL();
);
#endif
ENDFUNCTION(main);