From c675b5d864c110cca59fd91351ec318fc19188e0 Mon Sep 17 00:00:00 2001 From: Daniel Grund Date: Tue, 17 Jan 2006 10:26:58 +0000 Subject: [PATCH] bugfix in arch_reg_req_is ## macro --- ir/be/bearch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/bearch.h b/ir/be/bearch.h index caf929434..534a1df5d 100644 --- a/ir/be/bearch.h +++ b/ir/be/bearch.h @@ -143,7 +143,7 @@ typedef enum _arch_register_req_type_t { * @return 1, If the kind of constraint is present, 0 if not. */ #define arch_register_req_is(req, kind) \ - ((req)->type & (arch_register_req_type_ ## kind) != 0) + (((req)->type & (arch_register_req_type_ ## kind)) != 0) /** * Expresses requirements to register allocation for an operand. -- 2.20.1