This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/gdb ChangeLog ada-lang.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	guitton@sourceware.org	2012-11-29 16:29:54

Modified files:
	gdb            : ChangeLog ada-lang.c 

Log message:
	Strip interface tags from visible fields
	
	The following Ada type:
	
	type Circle is new Shape and Drawable with record
	Center : Point;
	Radius : Natural;
	end record;
	
	...is displayed as follow in GDB:
	
	(gdb) ptype circle
	type = new classes.shape with record
	V51s: ada.tags.interface_tag;
	center: classes.point;
	radius: natural;
	end record
	
	V51s is an internal field that is of no interest for the user. It should
	not be displayed.
	
	gdb/ChangeLog:
	
	* ada-lang.c (ada_is_interface_tag): New function.
	(ada_is_ignored_field): Add interface tags to the list
	of ignored fields.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.14869&r2=1.14870
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ada-lang.c.diff?cvsroot=src&r1=1.383&r2=1.384


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]