OSDN Git Service

(plain_type_1): For LONG_LONG_TYPE_SIZE, return T_[U]LONG instead of 0
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 14 Jan 1995 01:40:18 +0000 (01:40 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 14 Jan 1995 01:40:18 +0000 (01:40 +0000)
(i.e. T_VOID).

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8755 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/sdbout.c

index e5d643e..d299b78 100644 (file)
@@ -1,5 +1,5 @@
 /* Output sdb-format symbol table information from GNU compiler.
-   Copyright (C) 1988, 1992, 1993, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1988, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -507,6 +507,8 @@ plain_type_1 (type)
          return (TREE_UNSIGNED (type) ? T_UINT : T_INT);
        if (size == LONG_TYPE_SIZE)
          return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG);
+       if (size == LONG_LONG_TYPE_SIZE)        /* better than nothing */
+         return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG);
        return 0;
       }