Commit 1034407f by Nick Clifton Committed by Nick Clifton

toplev.c (f_options): Add "profile" switch so that -fno-profile can be used to disable -p.

    * toplev.c (f_options): Add "profile" switch so that
    -fno-profile can be used to disable -p.

From-SVN: r52904
parent fbe5eb6d
2002-04-29 Nick Clifton <nickc@cambridge.redhat.com>
* toplev.c (f_options): Add "profile" switch so that
-fno-profile can be used to disable -p.
2002-04-29 Bernd Schmidt <bernds@redhat.com> 2002-04-29 Bernd Schmidt <bernds@redhat.com>
* c-common.c (type_for_mode): Add support for V2DFmode, V2DImode, * c-common.c (type_for_mode): Add support for V2DFmode, V2DImode,
......
...@@ -1065,6 +1065,8 @@ static const lang_independent_options f_options[] = ...@@ -1065,6 +1065,8 @@ static const lang_independent_options f_options[] =
N_("Create data files needed by gcov") }, N_("Create data files needed by gcov") },
{"branch-probabilities", &flag_branch_probabilities, 1, {"branch-probabilities", &flag_branch_probabilities, 1,
N_("Use profiling information for branch probabilities") }, N_("Use profiling information for branch probabilities") },
{"profile", &profile_flag, 1,
N_("Enable basic program profiling code") },
{"reorder-blocks", &flag_reorder_blocks, 1, {"reorder-blocks", &flag_reorder_blocks, 1,
N_("Reorder basic blocks to improve code placement") }, N_("Reorder basic blocks to improve code placement") },
{"rename-registers", &flag_rename_registers, 1, {"rename-registers", &flag_rename_registers, 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment