From: Richard Stallman Date: Tue, 10 Nov 1992 21:27:39 +0000 (+0000) Subject: (plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=580b8ee2bdd059bc04f38c19b82479934121182a;p=gcc.git (plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE. From-SVN: r2739 --- diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 4c3b24dabc2..4557817649d 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -452,6 +452,8 @@ plain_type_1 (type) return (TREE_UNSIGNED (type) ? T_USHORT : T_SHORT); if (size == INT_TYPE_SIZE) return (TREE_UNSIGNED (type) ? T_UINT : T_INT); + if (size == LONG_TYPE_SIZE) + return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG); return 0; }