Emit bad instead of broken code for Add on amd64.
[libfirm] / ir / tr / type_finalization.c
index e8f7ca4..7b9f54e 100644 (file)
@@ -34,7 +34,8 @@
 
 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
 
-static void do_finalization(type_or_ent tore, void *env) {
+static void do_finalization(type_or_ent tore, void *env)
+{
        ir_type *glob_tp = env;
 
        if (is_type(tore.typ)) {
@@ -47,10 +48,10 @@ static void do_finalization(type_or_ent tore, void *env) {
                        return;
                if (get_class_n_subtypes(cls) == 0) {
                        /* Note that we set the final property even for the
-                          frame/tls types this way. Should not made any problems. */
+                          frame/global types this way. Should not made any problems. */
                        set_class_final(cls, 1);
                        DB((dbg, LEVEL_1, " made final Class %s\n",
-                               get_type_name(cls)));
+                               get_class_name(cls)));
                }
        } else {
                ir_entity *ent = tore.ent;
@@ -68,11 +69,11 @@ static void do_finalization(type_or_ent tore, void *env) {
                        assert(get_entity_n_overwrittenby(ent) == 0);
                        set_entity_final(ent, 1);
                        DB((dbg, LEVEL_1, " made final %s::%s\n",
-                               get_type_name(owner), get_entity_name(ent)));
+                               get_compound_name(owner), get_entity_name(ent)));
                } else if (get_entity_n_overwrittenby(ent) == 0) {
                        set_entity_final(ent, 1);
                        DB((dbg, LEVEL_1, " made final %s::%s\n",
-                               get_type_name(owner), get_entity_name(ent)));
+                               get_compound_name(owner), get_entity_name(ent)));
                }
        }
 }  /* do_finalization */
@@ -83,7 +84,8 @@ static void do_finalization(type_or_ent tore, void *env) {
  * After this is done, all classes and entities that are not overridden
  * anymore have the final property set.
  */
-void types_calc_finalization(void) {
+void types_calc_finalization(void)
+{
        if (! get_opt_closed_world())
                return;