From 7662ea96712de35fdde26f772828972383214281 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 9 Feb 2006 12:55:59 +0000 Subject: [PATCH] Fixed the Proj-Numbers for the Raise Node (now again like in older Firm) [r7331] --- ir/ir/irnode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/ir/irnode.h b/ir/ir/irnode.h index 58d5356cd..425ac50e1 100644 --- a/ir/ir/irnode.h +++ b/ir/ir/irnode.h @@ -961,9 +961,9 @@ void set_InstOf_obj (ir_node *node, ir_node *obj); * Projection numbers for Raise. */ typedef enum { - pn_Raise_M, /**< Memory result. */ - pn_Raise_X, /**< Execution result. */ - pn_Raise_max /**< number of projections from a Raise */ + pn_Raise_X = 0, /**< The control flow to the exception handler. */ + pn_Raise_M = 1, /**< The Memory result. */ + pn_Raise_max /**< number of projections from a Raise */ } pn_Raise; /* Projection numbers for Raise. */ ir_node *get_Raise_mem (ir_node *node); -- 2.20.1