]> git.sur5r.net Git - cc65/commit
Allow __fastcall__ for C function. Contrary to the name, this is a size
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 22 Mar 2001 21:02:01 +0000 (21:02 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 22 Mar 2001 21:02:01 +0000 (21:02 +0000)
commit4357bb47604774ded7900ed13d139c32cf854c0a
treec5ffd35717caaed8a4e80dcd50e3f21ff911e0b6
parent00706daa499fd3b48d75de3b2b99b90e9b2b862d
Allow __fastcall__ for C function. Contrary to the name, this is a size
optimization for C functions. The last parameter is not pushed onto the
stack by the caller but in the function entry code, so there is no speed
but a size gain.

git-svn-id: svn://svn.cc65.org/cc65/trunk@645 b7a2c559-68d2-44c3-8de9-860c34a00d81
src/cc65/datatype.c
src/cc65/datatype.h
src/cc65/declare.c
src/cc65/function.c
src/cc65/function.h
src/cc65/parser.c