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
34146b94
Commit
34146b94
authored
Oct 14, 2002
by
Graham Stott
Committed by
Graham Stott
Oct 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stmt.c (decl_conflicts_with_clobbers_p): Add REG_P check.
From-SVN: r58128
parent
3a840c93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-1
gcc/stmt.c
+1
-0
No files found.
gcc/ChangeLog
View file @
34146b94
2002
-
10
-
14
Graham
Stott
<
graham
.
stott
@btinternet
.
com
>
*
stmt
.
c
(
decl_conflicts_with_clobbers_p
)
:
Add
REG_P
check
.
2002
-
10
-
14
Aldy
Hernandez
<
aldyh
@redhat
.
com
>
2002
-
10
-
14
Aldy
Hernandez
<
aldyh
@redhat
.
com
>
*
stmt
.
c
:
Fix
typo
in
comment
.
*
stmt
.
c
:
Fix
typo
in
comment
.
...
@@ -2932,7 +2936,7 @@ Tue Sep 17 13:40:13 2002 Nicola Pero <n.pero@mi.flashnet.it>
...
@@ -2932,7 +2936,7 @@ Tue Sep 17 13:40:13 2002 Nicola Pero <n.pero@mi.flashnet.it>
* cfgcleanup.c (try_crossjump_to_edge): Fix updating of liveness
* cfgcleanup.c (try_crossjump_to_edge): Fix updating of liveness
information.
information.
2002-09-07 Graham Stott <graham.stott@btinternet.co
n
>
2002-09-07 Graham Stott <graham.stott@btinternet.co
m
>
* rtlanal.c (dead_or_set_regno_p): Fix typo.
* rtlanal.c (dead_or_set_regno_p): Fix typo.
...
...
gcc/stmt.c
View file @
34146b94
...
@@ -1414,6 +1414,7 @@ decl_conflicts_with_clobbers_p (decl, clobbered_regs)
...
@@ -1414,6 +1414,7 @@ decl_conflicts_with_clobbers_p (decl, clobbered_regs)
list are not allowed. */
list are not allowed. */
if
((
TREE_CODE
(
decl
)
==
VAR_DECL
||
TREE_CODE
(
decl
)
==
PARM_DECL
)
if
((
TREE_CODE
(
decl
)
==
VAR_DECL
||
TREE_CODE
(
decl
)
==
PARM_DECL
)
&&
DECL_REGISTER
(
decl
)
&&
DECL_REGISTER
(
decl
)
&&
REG_P
(
DECL_RTL
(
decl
))
&&
REGNO
(
DECL_RTL
(
decl
))
<
FIRST_PSEUDO_REGISTER
)
&&
REGNO
(
DECL_RTL
(
decl
))
<
FIRST_PSEUDO_REGISTER
)
{
{
rtx
reg
=
DECL_RTL
(
decl
);
rtx
reg
=
DECL_RTL
(
decl
);
...
...
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