diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-15 00:17:43 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-15 00:17:43 +0000 |
commit | 47594a5c7e311e7a12de955f85cc40db96c5f0ab (patch) | |
tree | f7697c98f71cecaf8c4f7abd5177482782fab717 /gcc/sdbout.c | |
parent | e5bcef7a140c3b93458b913369cc0478bb3e2058 (diff) | |
download | gcc-47594a5c7e311e7a12de955f85cc40db96c5f0ab.tar.gz |
remove EXTENDED_SDB_BASIC_TYPES
The last target using this was i960, which was removed many years ago,
so there's no reason to keep it.
gcc/ChangeLog:
2015-11-14 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* gsyms.h (enum sdb_type): Remove code for
EXTENDED_SDB_BASIC_TYPES.
(enum sdb_masks): Likewise.
* sdbout.c (plain_type_1): Likewise.
* system.h: Poison EXTENDED_SDB_BASIC_TYPES macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230389 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 7964059db3a..e495a8aa0bc 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -516,13 +516,9 @@ plain_type_1 (tree type, int level) return T_FLOAT; if (precision == DOUBLE_TYPE_SIZE) return T_DOUBLE; -#ifdef EXTENDED_SDB_BASIC_TYPES - if (precision == LONG_DOUBLE_TYPE_SIZE) - return T_LNGDBL; -#else if (precision == LONG_DOUBLE_TYPE_SIZE) return T_DOUBLE; /* better than nothing */ -#endif + return 0; } |