Mux -> Abs works for unordered compare ...
[libfirm] / ir / ir / irgraph_t.h
index f5e67fc..a743ea9 100644 (file)
@@ -29,7 +29,6 @@
 #include "firm_types.h"
 #include "irgraph.h"
 
-#include "firm_common_t.h"
 #include "irtypes.h"
 #include "irprog.h"
 #include "pseudo_irg.h"
@@ -250,7 +249,7 @@ _set_irg_current_block(ir_graph *irg, ir_node *node) {
 
 static inline ir_entity *
 _get_irg_entity(const ir_graph *irg) {
-       assert(irg && irg->ent);
+       assert(irg);
        return irg->ent;
 }
 
@@ -261,8 +260,8 @@ _set_irg_entity(ir_graph *irg, ir_entity *ent) {
 
 static inline ir_type *
 _get_irg_frame_type(ir_graph *irg) {
-       assert(irg && irg->frame_type);
-       return irg->frame_type = skip_tid(irg->frame_type);
+       assert(irg->frame_type);
+       return irg->frame_type;
 }
 
 static inline void