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
9eb54558
Commit
9eb54558
authored
Sep 26, 2003
by
Richard Sandiford
Committed by
Richard Sandiford
Sep 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (if_then_else_cond): Tighten mode check.
From-SVN: r71815
parent
a8016863
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/combine.c
+1
-1
No files found.
gcc/ChangeLog
View file @
9eb54558
2003-09-26 Richard Sandiford <rsandifo@redhat.com>
* combine.c (if_then_else_cond): Tighten mode check.
2003-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
* cppcharset.c, cpphash.h: Rename 'struct strbuf' to
...
...
gcc/combine.c
View file @
9eb54558
...
...
@@ -7422,7 +7422,7 @@ if_then_else_cond (rtx x, rtx *ptrue, rtx *pfalse)
}
/* Likewise for 0 or a single bit. */
else
if
(
mode
!=
VOIDmode
else
if
(
SCALAR_INT_MODE_P
(
mode
)
&&
GET_MODE_BITSIZE
(
mode
)
<=
HOST_BITS_PER_WIDE_INT
&&
exact_log2
(
nz
=
nonzero_bits
(
x
,
mode
))
>=
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