From 4992f86ceda4683525b7d8aa75572a3c538374ec Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 5 Mar 2006 01:06:42 +0000 Subject: [PATCH] CopyB projs are now independent of Call projs [r7411] --- ir/ir/irnode.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ir/ir/irnode.h b/ir/ir/irnode.h index e70e554e6..59dcb36dd 100644 --- a/ir/ir/irnode.h +++ b/ir/ir/irnode.h @@ -919,11 +919,11 @@ void set_Mux_true (ir_node *node, ir_node *ir_true); * Projection numbers for result of CopyB node: use for Proj nodes! */ typedef enum { - pn_CopyB_M_regular = pn_Call_M_regular, /**< The memory result. */ - pn_CopyB_X_except = pn_Call_X_except, /**< The control flow result branching to the exception handler */ - pn_CopyB_M_except = pn_Call_M_except, /**< The memory result in case the runtime function terminated with + pn_CopyB_M_regular = 0, /**< The memory result. */ + pn_CopyB_X_except = 1, /**< The control flow result branching to the exception handler */ + pn_CopyB_M_except = 2, /**< The memory result in case the runtime function terminated with an exception */ - pn_CopyB_max = pn_Call_max /**< number of projections from a CopyB */ + pn_CopyB_max = 3 /**< number of projections from a CopyB */ } pn_CopyB; /* Projection numbers for CopyB. */ #define pn_CopyB_M pn_CopyB_M_regular -- 2.20.1