added ir/opt include
[libfirm] / ir / be / bemain.c
index a9e2b24..751c445 100644 (file)
@@ -156,7 +156,7 @@ static const lc_opt_table_entry_t be_main_options[] = {
        LC_OPT_ENT_ENUM_PTR ("isa",      "the instruction set architecture",                    &isa_var),
        LC_OPT_ENT_NEGBOOL  ("noomitfp", "do not omit frame pointer",                           &be_options.omit_fp),
        LC_OPT_ENT_BOOL     ("stabs",    "enable stabs debug support",                          &be_options.stabs_debug_support),
-       LC_OPT_ENT_ENUM_PTR ("vrfy",     "verify the backend irg (off, warn, assert)",          &vrfy_var),
+       LC_OPT_ENT_ENUM_PTR ("vrfy",     "verify the backend irg",                              &vrfy_var),
        LC_OPT_ENT_BOOL     ("time",     "get backend timing statistics",                       &be_options.timing),
        LC_OPT_ENT_BOOL     ("profile",  "instrument the code for execution count profiling",   &be_options.opt_profile),
 
@@ -498,7 +498,7 @@ static void be_main_loop(FILE *file_handle, const char *cup_name)
                /**
                 * Create execution frequencies from profile data or estimate some
                 */
-               if(be_profile_has_data()) {
+               if (be_profile_has_data()) {
                        birg->execfreqs = be_create_execfreqs_from_profile(irg);
                } else {
                        birg->execfreqs = compute_execfreq(irg, 10);
@@ -537,7 +537,7 @@ static void be_main_loop(FILE *file_handle, const char *cup_name)
                        Since the code generator made a lot of new nodes and skipped
                        a lot of old ones, we should do dead node elimination here.
                        Note that this requires disabling the edges here.
-                */
+               */
                edges_deactivate(irg);
                //dead_node_elimination(irg);
                edges_activate(irg);