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
aabb6c74
Commit
aabb6c74
authored
Apr 25, 2000
by
Nick Clifton
Committed by
Nick Clifton
Apr 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not try to combine a sequence of insns when the second insn has been
replaced by a note. From-SVN: r33398
parent
a04678ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
gcc/ChangeLog
+6
-0
gcc/combine.c
+15
-6
No files found.
gcc/ChangeLog
View file @
aabb6c74
2000
-
04
-
24
Nick
Clifton
<
nickc
@redhat
.
com
>
*
combine
.
c
(
combine_instructions
)
:
Do
not
try
to
combine
a
sequence
of
insns
when
the
second
insn
has
been
replaced
by
a
note
.
Mon
Apr
24
17
:
34
:
18
2000
Mumit
Khan
<
khan
@xraylith
.
wisc
.
edu
>
Mon
Apr
24
17
:
34
:
18
2000
Mumit
Khan
<
khan
@xraylith
.
wisc
.
edu
>
*
gcc
.
c
(
load_specs
)
:
New
static
function
.
*
gcc
.
c
(
load_specs
)
:
New
static
function
.
...
...
gcc/combine.c
View file @
aabb6c74
...
@@ -646,12 +646,21 @@ combine_instructions (f, nregs)
...
@@ -646,12 +646,21 @@ combine_instructions (f, nregs)
/* Try each sequence of three linked insns ending with this one. */
/* Try each sequence of three linked insns ending with this one. */
for
(
links
=
LOG_LINKS
(
insn
);
links
;
links
=
XEXP
(
links
,
1
))
for
(
links
=
LOG_LINKS
(
insn
);
links
;
links
=
XEXP
(
links
,
1
))
for
(
nextlinks
=
LOG_LINKS
(
XEXP
(
links
,
0
));
nextlinks
;
{
nextlinks
=
XEXP
(
nextlinks
,
1
))
rtx
link
=
XEXP
(
links
,
0
);
if
((
next
=
try_combine
(
insn
,
XEXP
(
links
,
0
),
XEXP
(
nextlinks
,
0
),
/* If the linked insn has been replaced by a note, then there
&
new_direct_jump_p
))
!=
0
)
is no point in persuing this chain any further. */
goto
retry
;
if
(
GET_CODE
(
link
)
==
NOTE
)
break
;
for
(
nextlinks
=
LOG_LINKS
(
link
);
nextlinks
;
nextlinks
=
XEXP
(
nextlinks
,
1
))
if
((
next
=
try_combine
(
insn
,
XEXP
(
links
,
0
),
XEXP
(
nextlinks
,
0
)))
!=
0
)
goto
retry
;
}
#ifdef HAVE_cc0
#ifdef HAVE_cc0
/* Try to combine a jump insn that uses CC0
/* Try to combine a jump insn that uses CC0
...
...
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