documentation: Update (i.e. mostly delete) information regarding current_ir_graph.
[libfirm] / include / libfirm / iredgekinds.h
index d5403b0..d32294f 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. */
+/** Supported Edge kinds.
+ * @ingroup iredges
+ */
+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"