Re: [PATCH 2/2] Compiler Attributes: naked can be shared

2018-09-18 Thread Stefan Agner
On 18.09.2018 09:06, Miguel Ojeda wrote: > On Tue, Sep 18, 2018 at 9:30 AM, Greg Kroah-Hartman > wrote: >> On Mon, Sep 17, 2018 at 08:19:50PM -0700, Stefan Agner wrote: >>> On 13.09.2018 16:59, Miguel Ojeda wrote: >>> > The naked attribute is supported by at least gcc >= 4.6 (for ARM, >>> > which

Re: [PATCH 2/2] Compiler Attributes: naked can be shared

2018-09-18 Thread Miguel Ojeda
On Tue, Sep 18, 2018 at 9:30 AM, Greg Kroah-Hartman wrote: > On Mon, Sep 17, 2018 at 08:19:50PM -0700, Stefan Agner wrote: >> On 13.09.2018 16:59, Miguel Ojeda wrote: >> > The naked attribute is supported by at least gcc >= 4.6 (for ARM, >> > which is the only current user), gcc >= 8 (for x86), cl

Re: [PATCH 2/2] Compiler Attributes: naked can be shared

2018-09-18 Thread Greg Kroah-Hartman
On Mon, Sep 17, 2018 at 08:19:50PM -0700, Stefan Agner wrote: > On 13.09.2018 16:59, Miguel Ojeda wrote: > > The naked attribute is supported by at least gcc >= 4.6 (for ARM, > > which is the only current user), gcc >= 8 (for x86), clang >= 3.1 > > and icc >= 13. See https://godbolt.org/z/350Dyc >

Re: [PATCH 2/2] Compiler Attributes: naked can be shared

2018-09-17 Thread Stefan Agner
On 13.09.2018 16:59, Miguel Ojeda wrote: > The naked attribute is supported by at least gcc >= 4.6 (for ARM, > which is the only current user), gcc >= 8 (for x86), clang >= 3.1 > and icc >= 13. See https://godbolt.org/z/350Dyc > > Therefore, move it out of compiler-gcc.h so that the definition > i