diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-04-05 16:34:53 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-04-05 16:34:53 +0000 |
commit | ed84fed1d9c0c76ceb0f73c8a244863548ea26f4 (patch) | |
tree | 3841e6071bc0a5d9fe9cb6bbcdd1f96b8334d552 /gcc/flags.h | |
parent | 9951570c0177bcfd31180a6e5b9afd980aa564b9 (diff) | |
download | gcc-ed84fed1d9c0c76ceb0f73c8a244863548ea26f4.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@688 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index 747e7c40b2c..868b3e3f423 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -192,6 +192,11 @@ extern int flag_unroll_all_loops; extern int flag_cse_follow_jumps; +/* Nonzero for -fcse-skip-blocks: + have cse follow a branch around a block. */ + +extern int flag_cse_skip_blocks; + /* Nonzero for -fexpensive-optimizations: perform miscellaneous relatively-expensive optimizations. */ extern int flag_expensive_optimizations; @@ -220,6 +225,13 @@ extern int flag_no_peephole; extern int flag_volatile; +/* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math + operations in the interest of optimization. For example it allows + GCC to assume arguments to sqrt are nonnegative numbers, allowing + faster code for sqrt to be generated. */ + +extern int flag_fast_math; + /* Nonzero means make functions that look like good inline candidates go inline. */ |