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
33e6a97a
Commit
33e6a97a
authored
Mar 03, 2004
by
Paul Brook
Committed by
Paul Brook
Mar 03, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
From-SVN: r78827
parent
b9dcdee4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/flow.c
+2
-2
No files found.
gcc/ChangeLog
View file @
33e6a97a
2004-03-03 Paul Brook <paul@codesourcery.com>
* flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
2004-03-03 Jan Hubicka <jh@suse.cz>
2004-03-03 Jan Hubicka <jh@suse.cz>
* ggc-common.c (ggc_alloc_cleared_stat, ggc_realloc_stat):
* ggc-common.c (ggc_alloc_cleared_stat, ggc_realloc_stat):
...
...
gcc/flow.c
View file @
33e6a97a
...
@@ -3056,7 +3056,7 @@ ior_reg_cond (rtx old, rtx x, int add)
...
@@ -3056,7 +3056,7 @@ ior_reg_cond (rtx old, rtx x, int add)
if
(
COMPARISON_P
(
old
))
if
(
COMPARISON_P
(
old
))
{
{
if
(
COMPARISON_P
(
x
)
)
if
(
COMPARISON_P
(
x
)
&&
REVERSE_CONDEXEC_PREDICATES_P
(
GET_CODE
(
x
),
GET_CODE
(
old
))
&&
REVERSE_CONDEXEC_PREDICATES_P
(
GET_CODE
(
x
),
GET_CODE
(
old
))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const1_rtx
;
return
const1_rtx
;
...
@@ -3168,7 +3168,7 @@ and_reg_cond (rtx old, rtx x, int add)
...
@@ -3168,7 +3168,7 @@ and_reg_cond (rtx old, rtx x, int add)
if
(
COMPARISON_P
(
old
))
if
(
COMPARISON_P
(
old
))
{
{
if
(
COMPARISON_P
(
x
)
)
if
(
COMPARISON_P
(
x
)
&&
GET_CODE
(
x
)
==
reverse_condition
(
GET_CODE
(
old
))
&&
GET_CODE
(
x
)
==
reverse_condition
(
GET_CODE
(
old
))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const0_rtx
;
return
const0_rtx
;
...
...
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