From d36402d9f0e6928949f9da8273859fdc5fe7b286 Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Sun, 15 Nov 2015 00:17:43 +0000 Subject: 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 * 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. From-SVN: r230389 --- gcc/sdbout.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'gcc/sdbout.c') diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 7964059..e495a8a 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; } -- cgit v1.1