Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
9061e4cd
Commit
9061e4cd
authored
Nov 19, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_complex_abs): Replace some erroneous uses of MODE with
SUBMODE. From-SVN: r6118
parent
2dd484ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/optabs.c
+5
-2
No files found.
gcc/optabs.c
View file @
9061e4cd
...
...
@@ -2030,12 +2030,15 @@ expand_complex_abs (mode, op0, target, unsignedp)
real
=
gen_realpart
(
submode
,
op0
);
imag
=
gen_imagpart
(
submode
,
op0
);
/* Square both parts. */
real
=
expand_mult
(
mode
,
real
,
real
,
NULL_RTX
,
0
);
imag
=
expand_mult
(
mode
,
imag
,
imag
,
NULL_RTX
,
0
);
real
=
expand_mult
(
submode
,
real
,
real
,
NULL_RTX
,
0
);
imag
=
expand_mult
(
submode
,
imag
,
imag
,
NULL_RTX
,
0
);
/* Sum the parts. */
total
=
expand_binop
(
submode
,
add_optab
,
real
,
imag
,
0
,
0
,
OPTAB_LIB_WIDEN
);
/* Get sqrt in TARGET. Set TARGET to where the result is. */
target
=
expand_unop
(
submode
,
sqrt_optab
,
total
,
target
,
0
);
if
(
target
==
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment