From 580b8ee2bdd059bc04f38c19b82479934121182a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 10 Nov 1992 21:27:39 +0000 Subject: [PATCH] (plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE. From-SVN: r2739 --- gcc/sdbout.c | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.30.2