Remove the unused attribute const arch_env_t *arch_env from struct draw_chordal_env_t.
[libfirm] / ir / ir / irnodemap.h
index b828272..065933f 100644 (file)
@@ -21,7 +21,7 @@
  * @file
  * @author    Matthias Braun
  * @date      30.03.2007
- * @brief     A nodemap. This should be prefered over a simple pset, because it
+ * @brief     A nodemap. This should be preferred over a simple pset, because it
  *            tries to guarantee deterministic behavior. (and is faster)
  * @version   $Id$
  * @note      Actually the bits to make the behaviour deterministic are not
@@ -31,7 +31,6 @@
 #define _FIRM_IRNODEMAP_H_
 
 #include "irnode.h"
-#include "xmalloc.h"
 
 typedef struct ir_nodemap_entry_t {
        const ir_node *node;
@@ -97,7 +96,7 @@ void ir_nodemap_remove(ir_nodemap_t *nodemap, const ir_node *node);
  *
  * @param nodemap   Pointer to the nodemap
  * @param node      The pointer to find
- * @returns         1 if nodemap contains the node, 0 else
+ * @returns         the associated data of the node or NULL
  */
 void *ir_nodemap_get(const ir_nodemap_t *nodemap, const ir_node *node);