Inline gen_Minus_ex() into its only caller gen_Minus().
[libfirm] / ir / ana / field_temperature.c
index f36bff4..01352b5 100644 (file)
 
 /* The entities that can be accessed by this Sel node. */
 int get_Sel_n_accessed_entities(ir_node *sel) {
+  (void) sel;
   return 1;
 }
 
 ir_entity *get_Sel_accessed_entity(ir_node *sel, int pos) {
+  (void) pos;
   return get_Sel_entity(sel);
 }
 
@@ -136,6 +138,7 @@ double get_type_estimated_n_instances(ir_type *tp) {
 }
 
 double get_type_estimated_mem_consumption_bytes(ir_type *tp) {
+  (void) tp;
   assert(0);
   return 0.0;
 }
@@ -358,6 +361,9 @@ double get_entity_estimated_n_dyncalls(ir_entity *ent) {
   return n_calls;
 }
 
+#if 0
+/* Move this to the jack compiler */
+
 /* ------------------------------------------------------------------------- */
 /* Auxiliary                                                                 */
 /* ------------------------------------------------------------------------- */
@@ -394,3 +400,5 @@ int is_jack_rts_entity(ir_entity *e) {
 
   return is_jack_rts_name(name);
 }
+
+#endif /* if 0 */