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
b14066a9
Commit
b14066a9
authored
Sep 11, 2000
by
Geoff Keating
Committed by
Geoffrey Keating
Sep 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
From-SVN: r36317
parent
6cd0d4de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/alias.c
+2
-2
No files found.
gcc/ChangeLog
View file @
b14066a9
2000-09-11 Geoff Keating <geoffk@cygnus.com>
* alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
2000-09-11 Bernd Schmidt <bernds@redhat.co.uk>
* reload.c (regno_clobbered_p): Fix thinko in previous change.
...
...
gcc/alias.c
View file @
b14066a9
...
...
@@ -1457,8 +1457,8 @@ memrefs_conflict_p (xsize, x, ysize, y, c)
return
memrefs_conflict_p
(
xsize
,
x
,
ysize
,
XEXP
(
y
,
0
),
c
);
}
if
(
GET_CODE
(
x
)
==
ADDRESSOF
||
GET_CODE
(
y
)
==
ADDRESSOF
)
return
xsize
<
=
0
||
ysize
<=
0
;
if
(
GET_CODE
(
x
)
==
ADDRESSOF
&&
GET_CODE
(
y
)
==
ADDRESSOF
)
return
xsize
<
0
||
ysize
<
0
;
if
(
CONSTANT_P
(
x
))
{
...
...
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