diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-01-10 20:12:57 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-01-10 20:12:57 +0000 |
commit | a01da83b2291abdccd8abe66eff604c50e3c71f0 (patch) | |
tree | 6a84e83a4ac5cdeb8d3b26f3d9d3dd04135fad57 /gcc/toplev.c | |
parent | 9f85bca76fd08f9bab2d9b0d4535ce5d90acfaea (diff) | |
download | gcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.zip gcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.tar.gz gcc-a01da83b2291abdccd8abe66eff604c50e3c71f0.tar.bz2 |
toplev.c: Fix formatting.
* toplev.c: Fix formatting.
* tree.c: Likewise.
* tree-dump.c: Likewise.
* unroll.c: Likewise.
* unwind-dw2.c: Likewise.
* unwind-dw2-fde.c: Likewise.
* unwind-dw2-fde-glibc.c: Likewise.
* unwind-sjlj.c: Likewise.
From-SVN: r48749
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 4d0e4b5..7fd0af7 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1701,8 +1701,8 @@ set_float_handler (handler) int do_float_handler (fn, data) - void (*fn) PARAMS ((PTR)); - PTR data; + void (*fn) PARAMS ((PTR)); + PTR data; { jmp_buf buf; @@ -2861,7 +2861,7 @@ rest_of_compilation (decl) ggc_collect (); flag_cse_skip_blocks = save_csb; flag_cse_follow_jumps = save_cfj; - } + } /* Move constant computations out of loops. */ @@ -3027,7 +3027,7 @@ rest_of_compilation (decl) if (initialize_uninitialized_subregs ()) { /* Insns were inserted, so things might look a bit different. */ - insns = get_insns(); + insns = get_insns (); life_analysis (insns, rtl_dump_file, (PROP_LOG_LINKS | PROP_REG_INFO | PROP_DEATH_NOTES)); } @@ -3704,7 +3704,7 @@ display_help () static void display_target_options () { - int undoc,i; + int undoc, i; static bool displayed = false; /* Avoid double printing for --help --target-help. */ @@ -3853,9 +3853,9 @@ decode_f_option (arg) } if (!strcmp (arg, "fast-math")) - set_fast_math_flags(); + set_fast_math_flags (); else if (!strcmp (arg, "no-fast-math")) - set_no_fast_math_flags(); + set_no_fast_math_flags (); else if ((option_value = skip_leading_substring (arg, "inline-limit-")) || (option_value = skip_leading_substring (arg, "inline-limit="))) { |