summaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-06-21 13:27:42 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-06-21 13:27:42 +0000
commit4bc2cd3f06652c1f3675fcf809c6638e57199182 (patch)
tree818004f23454aaee6a346f759f532dfb6cffa3d0 /gdb/gdbtypes.c
parent8588f814f00dc208a1f7ddb26e9e64b71e2a6537 (diff)
downloadgdb-4bc2cd3f06652c1f3675fcf809c6638e57199182.tar.gz
import gdb-1999-06-21 snapshot
Diffstat (limited to 'gdb/gdbtypes.c')
-rw-r--r--gdb/gdbtypes.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 64407668b82..1037be72a2b 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -38,6 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
struct type *builtin_type_void;
struct type *builtin_type_char;
+struct type *builtin_type_true_char;
struct type *builtin_type_short;
struct type *builtin_type_int;
struct type *builtin_type_long;
@@ -2777,7 +2778,10 @@ build_gdbtypes ()
0,
"char", (struct objfile *) NULL);
TYPE_FLAGS (builtin_type_char) |= TYPE_FLAG_NOSIGN;
-
+ builtin_type_true_char =
+ init_type (TYPE_CODE_CHAR, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
+ 0,
+ "true character", (struct objfile *) NULL);
builtin_type_signed_char =
init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
0,