diff options
author | Fred Fish <fnf@specifix.com> | 1991-10-24 10:58:41 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-10-24 10:58:41 +0000 |
commit | e2aab0314f833f6b930a5aaae4a93024a41dc1a0 (patch) | |
tree | 336c705144e2c34e0ba98b3f177a3d61c7ce326c /gdb/symtab.h | |
parent | 020706804bcb9cc69cdafb2f959a4fd5ee557899 (diff) | |
download | binutils-gdb-e2aab0314f833f6b930a5aaae4a93024a41dc1a0.tar.gz |
Add three new builtin types (builtin_type_long_double, builtin_type_complex,
and builtin_type_double_complex). Also add and use various TARGET_<TYPE>_BIT
macros to indicate the sizes of various types on the target machine.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index b29f4402e6c..1f8ff418acc 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -826,6 +826,9 @@ extern struct type *builtin_type_unsigned_int; extern struct type *builtin_type_unsigned_long; extern struct type *builtin_type_float; extern struct type *builtin_type_double; +extern struct type *builtin_type_long_double; +extern struct type *builtin_type_complex; +extern struct type *builtin_type_double_complex; /* This type represents a type that was unrecognized in symbol read-in. */ extern struct type *builtin_type_error; |