This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: FASTCALL support


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]