public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/60517] New: warning/error for taking address of member of a temporary object
@ 2014-03-13 15:54 manu at gcc dot gnu.org
  2014-03-13 20:42 ` [Bug c++/60517] " glisse at gcc dot gnu.org
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: manu at gcc dot gnu.org @ 2014-03-13 15:54 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60517

            Bug ID: 60517
           Summary: warning/error for taking address of member of a
                    temporary object
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: manu at gcc dot gnu.org

class B {
public:
    double x[2];
};
class A {
    B b;
public:
    B getB(void) { return b; }
};

double foo(A a) {
    double * x = &(a.getB().x[0]);
    return x[0];
}

In the code above, x is not pointing to anything useful. I am not sure how hard
would be to diagnose this, but it would be nice if it was possible. It would
have saved me a few hours of bug-hunting today.


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

end of thread, other threads:[~2014-11-22 14:48 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-13 15:54 [Bug c++/60517] New: warning/error for taking address of member of a temporary object manu at gcc dot gnu.org
2014-03-13 20:42 ` [Bug c++/60517] " glisse at gcc dot gnu.org
2014-03-13 23:44 ` manu at gcc dot gnu.org
2014-03-14  7:19 ` glisse at gcc dot gnu.org
2014-03-14 10:41 ` manu at gcc dot gnu.org
2014-03-14 12:13 ` glisse at gcc dot gnu.org
2014-03-14 15:41 ` glisse at gcc dot gnu.org
2014-03-14 16:51 ` manu at gcc dot gnu.org
2014-03-14 17:29 ` glisse at gcc dot gnu.org
2014-03-14 18:02 ` glisse at gcc dot gnu.org
2014-04-05 23:01 ` glisse at gcc dot gnu.org
2014-04-06  8:23 ` glisse at gcc dot gnu.org
2014-04-06 10:17 ` glisse at gcc dot gnu.org
2014-06-26 17:22 ` paolo.carlini at oracle dot com
2014-07-31  9:34 ` glisse at gcc dot gnu.org
2014-08-22 13:02 ` manu at gcc dot gnu.org
2014-08-22 13:22 ` glisse at gcc dot gnu.org
2014-11-22 14:48 ` glisse 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).