changed the projection numbers of Raise to match the generic scheme
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 2 Jan 2008 17:13:55 +0000 (17:13 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 2 Jan 2008 17:13:55 +0000 (17:13 +0000)
[r17139]

include/libfirm/irnode.h

index 7535c3f..65ecdae 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -1130,9 +1130,9 @@ void    set_InstOf_obj(ir_node *node, ir_node *obj);
  * Projection numbers for Raise.
  */
 typedef enum {
-       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_M = pn_Generic_M_regular,  /**< The Memory result. */
+       pn_Raise_X = pn_Generic_X_regular,  /**< The control flow to the exception handler. */
+       pn_Raise_max                        /**< number of projections from a Raise */
 } pn_Raise;  /* Projection numbers for Raise. */
 
 ir_node *get_Raise_mem(const ir_node *node);