diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2002-07-06 15:39:46 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-07-06 15:39:46 +0200 |
commit | ef171ead7c05e42837f8d69289d57d42a7222c31 (patch) | |
tree | a66f8e0a3431cadcb145609040b3740eb8aecd35 /gcc/toplev.c | |
parent | 6ab5f795987a8c42e4e6e857a26a61a267c9f12e (diff) | |
download | gcc-ef171ead7c05e42837f8d69289d57d42a7222c31.zip gcc-ef171ead7c05e42837f8d69289d57d42a7222c31.tar.gz gcc-ef171ead7c05e42837f8d69289d57d42a7222c31.tar.bz2 |
toplev.c (set_fast_math_flags): Don't use ISO C style function definitions.
* toplev.c (set_fast_math_flags): Don't use ISO C style function
definitions.
* gengtype.c (open_base_files): Likewise.
(close_output_files): Likewise.
* tracer.c (find_best_predecessor): Likewise.
(find_best_successor): Likewise.
(ignore_bb_p): Likewise.
From-SVN: r55286
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index cbdb8ff..0c2fd7c 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1549,7 +1549,8 @@ set_Wunused (setting) -ffast-math and -fno-fast-math imply. */ void -set_fast_math_flags (int set) +set_fast_math_flags (set) + int set; { flag_trapping_math = !set; flag_unsafe_math_optimizations = set; |