tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] [FreeBSD support] __aligned(n) + __pure issues


From: grischka
Subject: Re: [Tinycc-devel] [FreeBSD support] __aligned(n) + __pure issues
Date: Mon, 10 Oct 2016 11:00:41 +0200
User-agent: Thunderbird 2.0.0.23 (Windows/20090812)

Christian Jullien wrote:
        int     sc_fpstate[128] __aligned(16);

aligned is an attribute (also in gcc.  You need

    #define __aligned(n) __attribute__((aligned(n)))

Should be in the headers but often it is only for __GNUC__.

pure also is an attribute, for optimization purposes and ignored
by tcc, unless given -Wunsupported.

-- gr




reply via email to

[Prev in Thread] Current Thread [Next in Thread]