summaryrefslogtreecommitdiff
path: root/gcc/sdbout.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-10 23:30:08 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-10 23:30:08 +0000
commit37e264110cd45c2b60395f112b34e8fd7a2dbf4e (patch)
tree7adb9def0ff0811ba4d744afee717f7c90a5451c /gcc/sdbout.c
parent878f0dd9661a48e0c69ed210b3d9d2c8a7643aee (diff)
downloadgcc-37e264110cd45c2b60395f112b34e8fd7a2dbf4e.tar.gz
* sdbout.c (plain_type_1): Make boolean types work better with sdb.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r--gcc/sdbout.c1
1 files changed, 1 insertions, 0 deletions
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;