https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846
H.J. Lu changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846
H.J. Lu changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846
--- Comment #2 from Jonathan Wakely ---
In C++11 dummy is a POD, and passing non-PODs through varargs is
conditionally-supported anyway (and G++ supports it).
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846
--- Comment #1 from Andrew Pinski ---
For C++98, this is undefined code because dummy is not a POD. For C++11, I
don't know if it is undefined or not.