This is the mail archive of the gdb-patches@sources.redhat.com 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]

[PATCH] Use TYPE_CODE_CHAR for pascal char type


The patch below is necessary, because
due to some recent GDB change, pascal 
chars where not displayed as characters anymore.



2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>

	* p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
	for fondamental pascal 'char' type.


Index: p-lang.c
===================================================================
RCS file: /cvs/src/src/gdb/p-lang.c,v
retrieving revision 1.6
diff -u -p -r1.6 p-lang.c
--- p-lang.c    2 May 2002 11:18:07 -0000       1.6
+++ p-lang.c    2 May 2002 11:21:12 -0000
@@ -293,7 +293,7 @@ pascal_create_fundamental_type (struct o
                         0, "void", objfile);
        break;
      case FT_CHAR:
-      type = init_type (TYPE_CODE_INT,
+      type = init_type (TYPE_CODE_CHAR,
                         TARGET_CHAR_BIT / TARGET_CHAR_BIT,
                         0, "char", objfile);
        break;



Pierre Muller
Institut Charles Sadron
6,rue Boussingault
F 67083 STRASBOURG CEDEX (France)
mailto:muller@ics.u-strasbg.fr
Phone : (33)-3-88-41-40-07  Fax : (33)-3-88-41-40-99


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