* sdbout.c (plain_type_1): Make boolean types work better with sdb.
authorColin Smith <colin@wrs.com>
Wed, 10 Mar 1999 23:30:08 +0000 (23:30 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 10 Mar 1999 23:30:08 +0000 (16:30 -0700)
From-SVN: r25686

gcc/ChangeLog
gcc/sdbout.c

index 849ec7dbc91886aee0103260868c67aef131fc79..a76a4af62ed5cc40f901c459a7b7938859ed19b7 100644 (file)
@@ -1,3 +1,7 @@
+1999-03-11  Colin Smith <colin@wrs.com>
+
+       * sdbout.c (plain_type_1): Make boolean types work better with sdb.
+
 Thu Mar 11 00:20:52 1999  Alexandre Oliva <oliva@dcc.unicamp.br>
 
        * gcc.texi: Update bug reporting instructions to match
index 1823155cea5a9b048b56f0b78630fc620f5e0b5a..f669d15040104c7ab358bb8d442c83f6ff05fb6a 100644 (file)
@@ -527,6 +527,7 @@ plain_type_1 (type, level)
     {
     case VOID_TYPE:
       return T_VOID;
+    case BOOLEAN_TYPE:
     case INTEGER_TYPE:
       {
        int size = int_size_in_bytes (type) * BITS_PER_UNIT;