made omitfp default, option is now noomitfp
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Wed, 5 Apr 2006 10:39:54 +0000 (10:39 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Wed, 5 Apr 2006 10:39:54 +0000 (10:39 +0000)
ir/be/beabi.c
ir/be/bemain.c

index 5fb5897..81dfc31 100644 (file)
@@ -108,8 +108,8 @@ struct _be_abi_irg_t {
 static const arch_irn_ops_if_t abi_irn_ops;
 static const arch_irn_handler_t abi_irn_handler;
 
-/* Flag: if set, try to omit the frame pointer if alled by the backend */
-int be_omit_fp = 0;
+/* Flag: if set, try to omit the frame pointer if called by the backend */
+int be_omit_fp = 1;
 
 /*
      _    ____ ___    ____      _ _ _                _
index 1730dbf..eaa13d0 100644 (file)
@@ -130,7 +130,7 @@ static const lc_opt_table_entry_t be_main_options[] = {
        LC_OPT_ENT_ENUM_MASK("dump", "dump irg on several occasions", &dump_var),
        LC_OPT_ENT_ENUM_PTR("ra", "register allocator", &ra_var),
        LC_OPT_ENT_ENUM_PTR("isa", "the instruction set architecture", &isa_var),
-       LC_OPT_ENT_BOOL("omitfp", "omit frame pointer", &be_omit_fp),
+       LC_OPT_ENT_NEGBOOL("noomitfp", "do not omit frame pointer", &be_omit_fp),
 
 #ifdef WITH_ILP
        LC_OPT_ENT_STR ("ilp.server", "the ilp server name", be_options.ilp_server, sizeof(be_options.ilp_server)),