diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-22 17:05:11 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-22 17:05:11 +0000 |
commit | dac49aa5c53ad15cdab5f898160dbe72708c98d3 (patch) | |
tree | 78237ea08ce69e2e4f29b80e8bf73c2c708305a4 /gcc/tree-complex.c | |
parent | e1cc2b2778f70e065dbe4189d50399c926a6221c (diff) | |
download | gcc-dac49aa5c53ad15cdab5f898160dbe72708c98d3.tar.gz |
* alias.c, basic-block.h, cgraphunit.c, combine.c, domwalk.h,
final.c, gengtype.c, genpreds.c, ggc-page.c, insn-notes.def,
lambda-code.c, loop-unroll.c, modulo-sched.c, pointer-set.c,
pretty-print.c, ra-colorize.c, sbitmap.c, tree-complex.c,
tree-data-ref.c, tree-dfa.c, tree-inline.c, tree-into-ssa.c,
tree-scalar-evolution.c, tree-ssa-dom.c,
tree-ssa-loop-manip.c, tree-ssa-loop-niter.c,
tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-threadupdate.c,
tree-vectorizer.c, vec.h: Fix comment formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89453 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r-- | gcc/tree-complex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index 1b49601d094..bfd74bdc800 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -254,7 +254,7 @@ expand_complex_div_wide (block_stmt_iterator *bsi, tree inner_type, t1 = gimplify_build2 (bsi, MULT_EXPR, inner_type, min, ratio); div = gimplify_build2 (bsi, PLUS_EXPR, inner_type, t1, max); - /* Result is now ((ar + ai*ratio)/div) + i((ai - ar*ratio)/div). */ + /* Result is now ((ar + ai*ratio)/div) + i((ai - ar*ratio)/div). */ t1 = gimplify_build2 (bsi, MULT_EXPR, inner_type, ai, ratio); t2 = gimplify_build2 (bsi, PLUS_EXPR, inner_type, ar, t1); rr = gimplify_build2 (bsi, code, inner_type, t2, div); |