aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-06-21 13:27:42 +0000
committerJason Molenda <jmolenda@apple.com>1999-06-21 13:27:42 +0000
commit9e0b60a847e443d0120ddd61a479e25ae8fcb83d (patch)
treee90e7c759d41943a9c008cc4fd49fc613dc4ce8d /gdb/gdbtypes.c
parenta8e53fb060baeebbf81fa5c0462effe814dfa1c5 (diff)
downloadfsf-binutils-gdb-9e0b60a847e443d0120ddd61a479e25ae8fcb83d.zip
fsf-binutils-gdb-9e0b60a847e443d0120ddd61a479e25ae8fcb83d.tar.gz
fsf-binutils-gdb-9e0b60a847e443d0120ddd61a479e25ae8fcb83d.tar.bz2
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 6440766..1037be7 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,