split irg and irp resources, add IRP_RESOURCE_TYPE_LINK
[libfirm] / include / libfirm / iredgekinds.h
index 5e9b158..710f5ba 100644 (file)
 #include "begin.h"
 
 /** Supported Edge kinds. */
-enum ir_edge_kind_t {
-       EDGE_KIND_NORMAL,  /**< Normal data flow edges. */
-       EDGE_KIND_BLOCK,   /**< Block to Block control flow edges. */
-       EDGE_KIND_DEP,     /**< Dependency edges. */
+typedef enum ir_edge_kind_t {
+       EDGE_KIND_FIRST,
+       EDGE_KIND_NORMAL = EDGE_KIND_FIRST,  /**< Normal data flow edges. */
+       EDGE_KIND_BLOCK,                     /**< Block to Block control flow edges. */
+       EDGE_KIND_DEP,                       /**< Dependency edges. */
        EDGE_KIND_LAST
-};
-
-typedef enum ir_edge_kind_t ir_edge_kind_t;
+} ir_edge_kind_t;
+ENUM_COUNTABLE(ir_edge_kind_t)
 
 #include "end.h"