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
78e93935
Commit
78e93935
authored
Aug 28, 2018
by
Jeff Law
Committed by
Jeff Law
Aug 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fold-const.c (fold_binary_loc): Remove recently added assert.
From-SVN: r263936
parent
d0794d14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
+5
-9
gcc/ChangeLog
+5
-1
gcc/fold-const.c
+0
-8
No files found.
gcc/ChangeLog
View file @
78e93935
2018-08-28 Jeff Law <law@redhat.com>
* fold-const.c (fold_binary_loc): Remove recently added assert.
2018-08-28 Joern Rennecke <joern.rennecke@riscy-ip.com>
* genpreds.c (write_predicate_subfunction): Also add ATTRIBUTE_UNUSED
...
...
@@ -78,8 +82,8 @@
* tree.h: Update documentation of fndecl_built_in_p
functions.
2018-08-27 Jeff Law <law@redhat.com>
2018-08-27 Jeff Law <law@redhat.com>
PR tree-optimization/87110
* tree-ssa-dse.c (compute_trims): Handle non-constant
TYPE_SIZE_UNIT.
...
...
gcc/fold-const.c
View file @
78e93935
...
...
@@ -9326,14 +9326,6 @@ fold_binary_loc (location_t loc, enum tree_code code, tree type,
if
(
kind
==
tcc_comparison
||
code
==
MIN_EXPR
||
code
==
MAX_EXPR
)
{
if
(
code
==
MIN_EXPR
||
code
==
MAX_EXPR
)
{
tree
typ0
=
TREE_TYPE
(
arg0
);
tree
typ1
=
TREE_TYPE
(
arg1
);
gcc_assert
(
TYPE_SIGN
(
typ0
)
==
TYPE_SIGN
(
typ1
)
&&
TYPE_MODE
(
typ0
)
==
TYPE_MODE
(
typ1
));
}
STRIP_SIGN_NOPS
(
arg0
);
STRIP_SIGN_NOPS
(
arg1
);
}
...
...
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