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
ab6c58f1
Commit
ab6c58f1
authored
Oct 21, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(store_expr): Disable optimization of using convert if exp's type is a
subtype. From-SVN: r12992
parent
1dcfa896
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/expr.c
+5
-2
No files found.
gcc/expr.c
View file @
ab6c58f1
...
...
@@ -3125,8 +3125,11 @@ store_expr (exp, target, want_value)
/* If we don't want a value, we can do the conversion inside EXP,
which will often result in some optimizations. Do the conversion
in two steps: first change the signedness, if needed, then
the extend. */
if
(
!
want_value
)
the extend. But don't do this if the type of EXP is a subtype
of something else since then the conversion might involve
more than just converting modes. */
if
(
!
want_value
&&
INTEGRAL_TYPE_P
(
TREE_TYPE
(
exp
))
&&
TREE_TYPE
(
TREE_TYPE
(
exp
))
==
0
)
{
if
(
TREE_UNSIGNED
(
TREE_TYPE
(
exp
))
!=
SUBREG_PROMOTED_UNSIGNED_P
(
target
))
...
...
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