From 9361a66290b92230825b1367d028f6a2ab39153e Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 5 Aug 2008 16:52:46 +0000 Subject: [PATCH] - removed C99 stdbool.h from the "official" interface in be.h [r21001] --- ir/be/TEMPLATE/bearch_TEMPLATE.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/be/TEMPLATE/bearch_TEMPLATE.c b/ir/be/TEMPLATE/bearch_TEMPLATE.c index 08f28e50a..b13ecfcff 100644 --- a/ir/be/TEMPLATE/bearch_TEMPLATE.c +++ b/ir/be/TEMPLATE/bearch_TEMPLATE.c @@ -678,11 +678,11 @@ static asm_constraint_flags_t TEMPLATE_parse_asm_constraint(const void *self, return ASM_CONSTRAINT_FLAG_INVALID; } -static bool TEMPLATE_is_valid_clobber(const void *self, const char *clobber) +static int TEMPLATE_is_valid_clobber(const void *self, const char *clobber) { (void) self; (void) clobber; - return false; + return 0; } const arch_isa_if_t TEMPLATE_isa_if = { -- 2.20.1