Remove dead assignment and the stale assert, which checked for the dead value, with it.
[cparser] / driver / firm_opt.h
index 6b5f05f..90938cf 100644 (file)
@@ -91,7 +91,7 @@ enum rts_names {
        rts_max
 };
 
-extern ir_entity_ptr rts_entities[rts_max];
+extern ir_entity *rts_entities[rts_max];
 
 /** Initialize for the Firm-generating back end. */
 void gen_firm_init(void);
@@ -118,4 +118,10 @@ void firm_option_help(print_option_help_func func);
  * switches) */
 void choose_optimization_pack(int level);
 
+/**
+ * Initialize implicit optimization settings in firm. Frontends should call this
+ * before starting graph construction
+ */
+void init_implicit_optimizations(void);
+
 #endif