public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/97681] New: noinline attribute ignored on constexpr function
@ 2020-11-02 21:11 ldalessandro at gmail dot com
  2020-11-02 21:15 ` [Bug c++/97681] " jakub at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: ldalessandro at gmail dot com @ 2020-11-02 21:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97681

            Bug ID: 97681
           Summary: noinline attribute ignored on constexpr function
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ldalessandro at gmail dot com
  Target Milestone: ---

GCC inlines function marked noinline when the function is marked as
`constexpr`, even if it is not used in `constexpr` context.
https://godbolt.org/z/b94Kje

```
[[gnu::noinline]] constexpr auto a() { return 1; }
[[gnu::noinline]] auto b() { return 2; }

int main() {
    int i = a();
    int j = b();
    return i + j;
}
```

```
b():
        mov     eax, 2
        ret
main:
        call    b()
        add     eax, 1
        ret
```

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-11-29  2:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-02 21:11 [Bug c++/97681] New: noinline attribute ignored on constexpr function ldalessandro at gmail dot com
2020-11-02 21:15 ` [Bug c++/97681] " jakub at gcc dot gnu.org
2020-11-02 21:17 ` ldalessandro at gmail dot com
2020-11-02 21:20 ` jakub at gcc dot gnu.org
2020-11-02 21:28 ` ldalessandro at gmail dot com
2020-11-02 22:42 ` ldalessandro at gmail dot com
2020-11-03  7:23 ` rguenth at gcc dot gnu.org
2020-11-03  9:47 ` jakub at gcc dot gnu.org
2021-11-29  2:05 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).