From b05889048e1175fdb041bf88f445354c24f501a7 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 5 Aug 2008 16:49:39 +0000 Subject: [PATCH] removed C99 stdbool.h from the "official" interface in be.h [r21000] --- ir/be/mips/bearch_mips.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/be/mips/bearch_mips.c b/ir/be/mips/bearch_mips.c index 29dbf648e..7e4f25378 100644 --- a/ir/be/mips/bearch_mips.c +++ b/ir/be/mips/bearch_mips.c @@ -998,11 +998,11 @@ static asm_constraint_flags_t mips_parse_asm_constraint(const void *self, return ASM_CONSTRAINT_FLAG_INVALID; } -static bool mips_is_valid_clobber(const void *self, const char *clobber) +static int mips_is_valid_clobber(const void *self, const char *clobber) { (void) self; (void) clobber; - return false; + return 0; } const arch_isa_if_t mips_isa_if = { -- 2.20.1