diff options
author | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-18 01:05:14 +0000 |
---|---|---|
committer | burley <burley@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-18 01:05:14 +0000 |
commit | 27bc6aeec64466281eb2cb1437b80a8182027d8b (patch) | |
tree | bf672e6d747e77a35f1c2998b3ff0cc8a94b55b6 /gcc/flags.h | |
parent | 4e99a7e40710ef7e2f79d9ad2a3124a04e1f8cf6 (diff) | |
download | gcc-27bc6aeec64466281eb2cb1437b80a8182027d8b.tar.gz |
improve open-coding of complex divide, use new method in g77
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26993 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index df736988cce..a3cc073383e 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -296,6 +296,12 @@ extern int flag_fast_math; extern int flag_errno_math; +/* 0 means straightforward implementation of complex divide acceptable. + 1 means wide ranges of inputs must work for complex divide. + 2 means C9X-like requirements for complex divide (not yet implemented). */ + +extern int flag_complex_divide_method; + /* Nonzero means to run loop optimizations twice. */ extern int flag_rerun_loop_opt; |