From a0587d56035c09ec482221808933365ab6961ab6 Mon Sep 17 00:00:00 2001 From: Colin Smith Date: Wed, 10 Mar 1999 23:30:08 +0000 Subject: [PATCH] * sdbout.c (plain_type_1): Make boolean types work better with sdb. From-SVN: r25686 --- gcc/ChangeLog | 4 ++++ gcc/sdbout.c | 1 + 2 files changed, 5 insertions(+) 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; -- 2.30.2