From: Colin Smith Date: Wed, 10 Mar 1999 23:30:08 +0000 (+0000) Subject: * sdbout.c (plain_type_1): Make boolean types work better with sdb. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a0587d56035c09ec482221808933365ab6961ab6;p=gcc.git * sdbout.c (plain_type_1): Make boolean types work better with sdb. From-SVN: r25686 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 849ec7dbc91..a76a4af62ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +1999-03-11 Colin Smith + + * sdbout.c (plain_type_1): Make boolean types work better with sdb. + Thu Mar 11 00:20:52 1999 Alexandre Oliva * gcc.texi: Update bug reporting instructions to match diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 1823155cea5..f669d150401 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -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;