2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
authorPierre Muller <muller@sourceware.org>
Thu, 2 May 2002 11:26:01 +0000 (11:26 +0000)
committerPierre Muller <muller@sourceware.org>
Thu, 2 May 2002 11:26:01 +0000 (11:26 +0000)
* p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
for fondamental pascal 'char' type.

gdb/ChangeLog
gdb/p-lang.c

index 63512ac..21d5692 100644 (file)
@@ -1,5 +1,10 @@
 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.
+
+2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
+
        * p-lang.h (is_pascal_string_type): Declaration changed,
        new sixth argument of type char ** added.
        * p-lang.c (is_pascal_string_type): Implementation 
index 6d518ee..4796da5 100644 (file)
@@ -293,7 +293,7 @@ pascal_create_fundamental_type (struct objfile *objfile, int typeid)
                        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;