Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: "Peng Yu" <pengyu.ut@gmail.com>
To: gdb@sourceware.org
Subject: Debugging static variable in inlined member function
Date: Mon, 08 Jan 2007 15:55:00 -0000	[thread overview]
Message-ID: <366c6f340701080755p2fcc08caq9bdc1d4d9debdd5b@mail.gmail.com> (raw)

Hi,

I have the following program listed below this email. I can not print
_a in the inlined version. But it is OK to print _a in the non-inlined
version. Can you tell me how to debug the inlined version of _a?

(gdb) s
main () at main.cc:32
32        std::cout << a.a() << std::endl;
(gdb) s
A::a (this=0xbff21077) at main.cc:11
11            std::cout << "inline" << std::endl;
(gdb) n
inline
12            ++ _a;
(gdb) p _a
No symbol "_a" in current context.

Thanks,
Peng

#include <iostream>

#define INLINE

class A {
  public:
    A() { }
#ifdef INLINE
    int a() {
      static int _a = 10;
      std::cout << "inline" << std::endl;
      ++ _a;
      return _a;
    }
#else
    int a();
#endif
  private:
};

#ifndef INLINE
int A::a() {
  static int _a = 10;
  std::cout << "not inline" << std::endl;
  ++ _a;
  return _a;
}
#endif

int main() {
  A a;
  std::cout << a.a() << std::endl;
}


             reply	other threads:[~2007-01-08 15:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-08 15:55 Peng Yu [this message]
2007-01-08 17:58 ` Daniel Jacobowitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=366c6f340701080755p2fcc08caq9bdc1d4d9debdd5b@mail.gmail.com \
    --to=pengyu.ut@gmail.com \
    --cc=gdb@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox