(plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE.
authorRichard Stallman <rms@gnu.org>
Tue, 10 Nov 1992 21:27:39 +0000 (21:27 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 10 Nov 1992 21:27:39 +0000 (21:27 +0000)
From-SVN: r2739

gcc/sdbout.c

index 4c3b24d..4557817 100644 (file)
@@ -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;
       }