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
f87550e0
Commit
f87550e0
authored
May 03, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(truthvalue_conversion): Don't optimize subtract of reals when target uses
IEEE arithmetic. From-SVN: r4311
parent
66b2ba11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/c-common.c
+9
-2
No files found.
gcc/c-common.c
View file @
f87550e0
...
...
@@ -1064,9 +1064,16 @@ truthvalue_conversion (expr)
return
truthvalue_conversion
(
TREE_OPERAND
(
expr
,
0
));
break
;
case
BIT_XOR_EXPR
:
case
MINUS_EXPR
:
/* These can be changed into a comparison of the two objects. */
/* With IEEE arithmetic, x - x may not equal 0, so we can't optimize
this case. */
if
(
TARGET_FLOAT_FORMAT
==
IEEE_FLOAT_FORMAT
&&
TREE_CODE
(
TREE_TYPE
(
expr
))
==
REAL_TYPE
)
break
;
/* fall through... */
case
BIT_XOR_EXPR
:
/* This and MINUR_EXPR can be changed into a comparison of the
two objects. */
if
(
TREE_TYPE
(
TREE_OPERAND
(
expr
,
0
))
==
TREE_TYPE
(
TREE_OPERAND
(
expr
,
1
)))
return
build_binary_op
(
NE_EXPR
,
TREE_OPERAND
(
expr
,
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