Ivan Leo Puoti wrote:
> I would like to know if the FASTCALL calling convention will be
> supported by gcc on linux sometime soon, I need this for some
> software I'm writing.
It already is:
http://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Function-Attributes.html
e.g.
int __attribute((fastcall)) foo(int a, int b)
{
return a + b;
}
Rup.