From e477588215b222bf42d72385d9808db56e0bfce0 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 15 Feb 2019 18:34:04 -0800 Subject: Use bool typedef in .c files --- qbe.c | 6 +++--- type.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qbe.c b/qbe.c index f0e37c5..ad82331 100644 --- a/qbe.c +++ b/qbe.c @@ -60,7 +60,7 @@ struct instruction { struct block { struct value label; - _Bool terminated; + bool terminated; struct array insts; struct block *next; @@ -960,7 +960,7 @@ emittype(struct type *t) } static void -emitrepr(struct representation *r, _Bool abi) +emitrepr(struct representation *r, bool abi) { if (abi && r->abi.id) { putchar(':'); @@ -1030,7 +1030,7 @@ emitinst(struct instruction *inst) } void -emitfunc(struct function *f, _Bool global) +emitfunc(struct function *f, bool global) { struct block *b; struct instruction **inst; diff --git a/type.c b/type.c index 90b35c2..c9a3a1e 100644 --- a/type.c +++ b/type.c @@ -193,7 +193,7 @@ typecompatible(struct type *t1, struct type *t2) } } -_Bool +bool typesame(struct type *t1, struct type *t2) { // XXX: implement -- cgit v1.2.3