public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/108311] New: system.h defines va_copy but we require C++11 compiler
@ 2023-01-06  6:41 pinskia at gcc dot gnu.org
  2023-01-06  8:21 ` [Bug middle-end/108311] " redi at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-01-06  6:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 108311
           Summary: system.h defines va_copy but we require C++11 compiler
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: internal-improvement
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

va_copy is part of C++11 so there is no reason for system.h to do:
#ifndef va_copy
# ifdef __va_copy
#   define va_copy(d,s)  __va_copy (d, s)
# else
#   define va_copy(d,s)  ((d) = (s))
# endif
#endif

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

end of thread, other threads:[~2023-03-16 14:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-06  6:41 [Bug middle-end/108311] New: system.h defines va_copy but we require C++11 compiler pinskia at gcc dot gnu.org
2023-01-06  8:21 ` [Bug middle-end/108311] " redi at gcc dot gnu.org
2023-01-06 12:21 ` marxin at gcc dot gnu.org
2023-03-16 14:02 ` marxin 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).