remove old #undef
authorMatthias Braun <matthias.braun@kit.edu>
Fri, 13 Jul 2012 19:31:52 +0000 (21:31 +0200)
committerMatthias Braun <matthias.braun@kit.edu>
Fri, 13 Jul 2012 19:53:49 +0000 (21:53 +0200)
ir/ir/irlinkednodeset.h
ir/ir/irnodeset.h

index 3ca5c74..63f12e6 100644 (file)
 #include "xmalloc.h"
 #include "list.h"
 
-/*
- * sebastian experimental:
- * use ordered arrays as node sets.
- * the guys here have made good experiences with that.
- * Internally we use normal Firm arrays and binary
- * search for locating the elements. Using arrays should
- * give the sets a small footprint.
- */
-#undef IR_NODESET_USE_ORDERED_SETS
-
 typedef struct ir_lnk_nodeset_entry_t {
        ir_node     *node;  /**< the node itself */
        list_head   list;   /**< link field for the list iterator */
index 535c144..b97b042 100644 (file)
 #include "firm_types.h"
 #include "xmalloc.h"
 
-/*
- * sebastian experimental:
- * use ordered arrays as node sets.
- * the guys here have made good experiences with that.
- * Internally we use normal Firm arrays and binary
- * search for locating the elements. Using arrays should
- * give the sets a small footprint.
- */
-#undef  IR_NODESET_USE_ORDERED_SETS
-
 #define HashSet          ir_nodeset_t
 #define HashSetIterator  ir_nodeset_iterator_t
 #define ValueType        ir_node*