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
766f6c30
Commit
766f6c30
authored
Mar 04, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(truthvalue_conversion): Handle COMPLEX_EXPR.
From-SVN: r3638
parent
1cc1b11a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
gcc/c-common.c
+15
-2
No files found.
gcc/c-common.c
View file @
766f6c30
...
...
@@ -373,7 +373,13 @@ convert_and_check (type, expr)
tree
t
=
convert
(
type
,
expr
);
if
(
TREE_CODE
(
t
)
==
INTEGER_CST
)
{
if
(
TREE_CONSTANT_OVERFLOW
(
t
))
if
(
TREE_UNSIGNED
(
TREE_TYPE
(
expr
))
&&
!
TREE_UNSIGNED
(
type
)
&&
TREE_CODE
(
TREE_TYPE
(
expr
))
==
INTEGER_TYPE
&&
TYPE_PRECISION
(
type
)
==
TYPE_PRECISION
(
TREE_TYPE
(
expr
)))
/* No warning for converting 0x80000000 to int. */
TREE_CONSTANT_OVERFLOW
(
t
)
=
0
;
else
if
(
TREE_CONSTANT_OVERFLOW
(
t
))
{
pedwarn
(
"overflow in implicit constant conversion"
);
TREE_CONSTANT_OVERFLOW
(
t
)
=
0
;
...
...
@@ -829,7 +835,8 @@ shorten_compare (op0_ptr, op1_ptr, restype_ptr, rescode_ptr)
TYPE is already properly set. */
}
else
if
(
real1
&&
real2
&&
TYPE_PRECISION
(
TREE_TYPE
(
primop0
))
==
TYPE_PRECISION
(
TREE_TYPE
(
primop1
)))
&&
(
TYPE_PRECISION
(
TREE_TYPE
(
primop0
))
==
TYPE_PRECISION
(
TREE_TYPE
(
primop1
))))
type
=
TREE_TYPE
(
primop0
);
/* If args' natural types are both narrower than nominal type
...
...
@@ -959,6 +966,12 @@ truthvalue_conversion (expr)
else
return
integer_one_node
;
case
COMPLEX_EXPR
:
return
build_binary_op
(
TRUTH_ANDIF_EXPR
,
truthvalue_conversion
(
TREE_REALPART
(
expr
)),
truthvalue_conversion
(
TREE_IMAGPART
(
expr
)),
0
);
case
NEGATE_EXPR
:
case
ABS_EXPR
:
case
FLOAT_EXPR
:
...
...
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