diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-08 05:50:01 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-08 05:50:01 +0000 |
commit | 43cb6f82a9090110c66040d4f19a5e413f4d77c1 (patch) | |
tree | 89de8eb9f5fb207e6fbf40e45c219210258a870c /gcc/optabs.c | |
parent | 186cf71faa7980803865fa01baf0c0127951afa0 (diff) | |
download | gcc-43cb6f82a9090110c66040d4f19a5e413f4d77c1.tar.gz |
* optabs.c (expand_cmplxdiv_wide): Use expand_abs to get the absolute
values.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27426 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index 2e8a2a62a00..2b9091bcf4e 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -504,11 +504,17 @@ expand_cmplxdiv_wide (real0, real1, imag0, imag1, realr, imagr, submode, imag1 = force_reg (submode, imag1); - temp1 = expand_unop (submode, abs_optab, real1, NULL_RTX, - unsignedp); - - temp2 = expand_unop (submode, abs_optab, imag1, NULL_RTX, - unsignedp); + /* XXX What's an "unsigned" complex number? */ + if (unsignedp) + { + temp1 = real1; + temp2 = imag1; + } + else + { + temp1 = expand_abs (submode, real1, NULL_RTX, 1); + temp2 = expand_abs (submode, imag1, NULL_RTX, 1); + } if (temp1 == 0 || temp2 == 0) return 0; |