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
f0b996c5
Commit
f0b996c5
authored
Mar 04, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(truthvalue_conversion): Fix handling of COMPLEX_EXPR.
Handle all complex values specially. From-SVN: r3645
parent
a333b79f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
gcc/c-common.c
+12
-3
No files found.
gcc/c-common.c
View file @
f0b996c5
...
...
@@ -967,9 +967,10 @@ truthvalue_conversion (expr)
return
integer_one_node
;
case
COMPLEX_EXPR
:
return
build_binary_op
(
TRUTH_ANDIF_EXPR
,
truthvalue_conversion
(
TREE_REALPART
(
expr
)),
truthvalue_conversion
(
TREE_IMAGPART
(
expr
)),
return
build_binary_op
((
TREE_SIDE_EFFECTS
(
TREE_OPERAND
(
expr
,
1
))
?
TRUTH_AND_EXPR
:
TRUTH_ANDIF_EXPR
),
truthvalue_conversion
(
TREE_OPERAND
(
expr
,
0
)),
truthvalue_conversion
(
TREE_OPERAND
(
expr
,
1
)),
0
);
case
NEGATE_EXPR
:
...
...
@@ -1027,6 +1028,14 @@ truthvalue_conversion (expr)
break
;
}
if
(
TREE_CODE
(
TREE_TYPE
(
expr
))
==
COMPLEX_TYPE
)
return
(
build_binary_op
((
TREE_SIDE_EFFECTS
(
expr
)
?
TRUTH_AND_EXPR
:
TRUTH_ANDIF_EXPR
),
truthvalue_conversion
(
build_unary_op
(
REALPART_EXPR
,
expr
,
0
)),
truthvalue_conversion
(
build_unary_op
(
IMAGPART_EXPR
,
expr
,
0
)),
0
));
return
build_binary_op
(
NE_EXPR
,
expr
,
integer_zero_node
,
1
);
}
...
...
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