Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: Marc Khouzam <marc.khouzam@ericsson.com>
To: "'gdb@sourceware.org'" <gdb@sourceware.org>
Subject: GDB syntax error when casting to base class
Date: Thu, 09 Sep 2010 12:50:00 -0000	[thread overview]
Message-ID: <F7CE05678329534C957159168FA70DEC5718DBD14C@EUSAACMS0703.eamcs.ericsson.se> (raw)

Hi,

I got an eclipse bug report that led me to a bizarre behavior from GDB.
In the very short session below, I'm getting a syntax error when casting
a variable to its base class.

If I remove the constructor (see comment in the code below)
the problem goes away.  Or if I add the word 'struct', it also goes away.

This is causing problems in Eclipse because -var-info-path-expression
returns the expression that causes a syntax error.

I tried to debug it but I ended up in c-exp.y and had to give up.

I was going to propose a patch that adds 'struct' to the 
-var-info-path-expression output, but I didn't think that was the 
greatest of solutions.  Currently, this is what we are planning to 
do in Eclipse to work around this problem.

I can open a PR if it makes sense?

Thanks

Marc

> gdb.7.2 a.out
GNU gdb (GDB) 7.2
(gdb) l 1
1       class bar{};
2
3       class foo : public bar {
4         public:
5           foo() {}  // Comment this line to make things work
6           void test() { return; }
7       };
8
9       int main(void)
10      {
11          foo f;
12          f.test();
13          return 0;
14      }

(gdb) b 6
Breakpoint 1 at 0x8048457: file base.cc, line 6.
(gdb) r
Starting program: /local/lmckhou/testing/a.out 
Breakpoint 1, foo::test (this=0xbfffbfa3) at base.cc:6
6           void test() { return; }

(gdb) p (*(bar*) this)
A syntax error in expression, near `) this)'.

(gdb) p (*(struct bar*) this)
$1 = {<No data fields>}


             reply	other threads:[~2010-09-09 12:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-09 12:50 Marc Khouzam [this message]
2010-09-09 14:00 ` André Pönitz
2010-09-09 15:09   ` Marc Khouzam

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=F7CE05678329534C957159168FA70DEC5718DBD14C@EUSAACMS0703.eamcs.ericsson.se \
    --to=marc.khouzam@ericsson.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