]> gcc.gnu.org Git - gcc.git/commitdiff
(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 4c3b24dabc2f09ced346ff2106349e4cfdbdb1e9..4557817649d9cc0d71bb245fe8262d1013ee2c32 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;
       }
 
This page took 0.069547 seconds and 5 git commands to generate.