[Bug target/69846] empty struct value fails to pass properly

2018-01-26 Thread hjl.tools at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846 H.J. Lu changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug target/69846] empty struct value fails to pass properly

2018-01-26 Thread hjl.tools at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69846 H.J. Lu changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/69846] empty struct value fails to pass properly

2016-03-22 Thread redi at gcc dot gnu.org
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).

[Bug target/69846] empty struct value fails to pass properly

2016-02-16 Thread pinskia at gcc dot gnu.org
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.