Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] linespec.c change to stop "malformed template specification" error
@ 2001-05-22 14:06 Daniel Berlin
  2001-06-06 16:09 ` Elena Zannoni
  0 siblings, 1 reply; 23+ messages in thread
From: Daniel Berlin @ 2001-05-22 14:06 UTC (permalink / raw)
  To: gdb-patches

This error is cause by find_toplevel_char not knowing that '<' and '>'
increase and decrease the depth we are at.

The result is that if you say "break _Rb_tree<int, int>", when it goes
to look for a comma at the top level, it thinks it found one right
after the "int", and temporarily truncates the string to '_Rb_tree<int,'
When we then proceed to go through the string, we see the "<", and
then go to find the end of the template name, and can't, because we've
truncated the string in the wrong place, and issue an error.

Cute, no?

--Dan


 2001-05-22  Daniel Berlin  <dan@cgsoftware.com>
 
 	* linespec.c (find_toplevel_char): '<' and '>' also increase and
 	decrease the depth we are at, in the case of templates.
 

Index: linespec.c
===================================================================
RCS file: /cvs/src/src/gdb/linespec.c,v
retrieving revision 1.11
diff -c -3 -p -r1.11 linespec.c
*** linespec.c	2001/04/27 00:19:09	1.11
--- linespec.c	2001/05/22 20:58:12
*************** find_toplevel_char (char *s, char c)
*** 274,282 ****
  	return scan;
        else if (*scan == '"' || *scan == '\'')
  	quoted = *scan;
!       else if (*scan == '(')
  	depth++;
!       else if (*scan == ')' && depth > 0)
  	depth--;
      }
  
--- 274,282 ----
  	return scan;
        else if (*scan == '"' || *scan == '\'')
  	quoted = *scan;
!       else if (*scan == '(' || *scan == '<')
  	depth++;
!       else if ((*scan == ')' || *scan == '>') && depth > 0)
  	depth--;
      }
  

-- 
"In my house on the ceilings I have paintings of the rooms
above...  So I never have to go upstairs.
"-Steven Wright


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

end of thread, other threads:[~2001-06-07 16:40 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-22 14:06 [RFA] linespec.c change to stop "malformed template specification" error Daniel Berlin
2001-06-06 16:09 ` Elena Zannoni
2001-06-06 17:00   ` Fernando Nasser
2001-06-06 21:00   ` Jim Blandy
2001-06-06 22:09     ` Daniel Berlin
2001-06-07  8:40       ` Jim Blandy
2001-06-07  8:47       ` macro-expanding expressions in GDB Jim Blandy
2001-06-07  9:01         ` Daniel Berlin
2001-06-07 11:52           ` Jim Blandy
2001-06-07 12:04             ` Daniel Berlin
2001-06-07 11:16         ` Stan Shebs
2001-06-06 23:36     ` [RFA] linespec.c change to stop "malformed template specification" error Daniel Berlin
2001-06-07  6:00     ` Fernando Nasser
2001-06-07  9:09       ` Jim Blandy
2001-06-07  7:40     ` Elena Zannoni
     [not found]       ` <nppucg1eq5.fsf@zwingli.cygnus.com>
2001-06-07  9:13         ` Daniel Berlin
2001-06-07 11:18           ` Jim Blandy
2001-06-07 11:35             ` Daniel Berlin
2001-06-07 15:22               ` Jim Blandy
2001-06-07 16:40                 ` Daniel Berlin
2001-06-07 10:27         ` Elena Zannoni
2001-06-07 12:30           ` Fernando Nasser
2001-06-07 15:14           ` Jim Blandy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox