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
6f9c49e0
Commit
6f9c49e0
authored
Mar 11, 1993
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (addr_overlap_p): Delete.
From-SVN: r3702
parent
db2e669b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
gcc/loop.c
+0
-23
No files found.
gcc/loop.c
View file @
6f9c49e0
...
@@ -2705,29 +2705,6 @@ invariant_p (x)
...
@@ -2705,29 +2705,6 @@ invariant_p (x)
return
1
+
conditional
;
return
1
+
conditional
;
}
}
/* Return 1 if OTHER (a mem ref) overlaps the area of memory
which is SIZE bytes starting at BASE. */
int
addr_overlap_p
(
other
,
base
,
size
)
rtx
other
;
rtx
base
;
HOST_WIDE_INT
size
;
{
HOST_WIDE_INT
start
=
0
,
end
;
if
(
GET_CODE
(
base
)
==
CONST
)
base
=
XEXP
(
base
,
0
);
if
(
GET_CODE
(
base
)
==
PLUS
&&
GET_CODE
(
XEXP
(
base
,
1
))
==
CONST_INT
)
{
start
=
INTVAL
(
XEXP
(
base
,
1
));
base
=
XEXP
(
base
,
0
);
}
end
=
start
+
size
;
return
refers_to_mem_p
(
other
,
base
,
start
,
end
);
}
/* Return nonzero if all the insns in the loop that set REG
/* Return nonzero if all the insns in the loop that set REG
are INSN and the immediately following insns,
are INSN and the immediately following insns,
...
...
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