From d79818212e10cc5b2667d90d34c7fc6b9ede13ce Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Fri, 16 Dec 2005 15:31:14 +0000 Subject: [PATCH] Modified enum names --- ir/be/bearch.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ir/be/bearch.h b/ir/be/bearch.h index a31def637..59bcacc11 100644 --- a/ir/be/bearch.h +++ b/ir/be/bearch.h @@ -155,14 +155,12 @@ typedef enum _arch_register_req_type_t { arch_register_req_type_limited = 2, /**< Only a real subset of the class is allowed. */ - arch_register_req_type_equal = 4, /**< The register must equal - another one at the node. */ + arch_register_req_type_should_be_same = 4, /**< The register should be equal + another one at the node. */ - arch_register_req_type_unequal = 8, /**< The register must be unequal - to some other at the node. */ + arch_register_req_type_should_be_different = 8, /**< The register must be unequal + to some other at the node. */ - arch_register_req_type_pair = 16 /**< The register is part of a - register pair. */ } arch_register_req_type_t; #define arch_register_req_is_constr(x) \ -- 2.20.1