doxygen comment updated
[libfirm] / ir / ana / cdep.c
index eb84076..de40a6b 100644 (file)
@@ -9,8 +9,6 @@
 #include "cdep.h"
 #include "irprintf.h"
 
-typedef unsigned int uint;
-
 static pmap *cdep_map;
 
 cdep *find_cdep(const ir_node *block)
@@ -66,8 +64,8 @@ typedef struct cdep_env {
 static void cdep_pre(ir_node *node, void *ctx)
 {
        cdep_env *env = ctx;
-       uint n;
-       uint i;
+       unsigned int n;
+       unsigned int i;
 
        /* special case:
         * start and end block have no control dependency
@@ -147,6 +145,8 @@ void compute_cdep(ir_graph *irg)
        set_dump_block_edge_hook(cdep_edge_hook);
        dump_ir_block_graph(irg, "_cdep");
        set_dump_block_edge_hook(NULL);
+#else
+       (void) cdep_edge_hook;
 #endif
 
        /* restore the post dominator relation */