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
7f16eed4
Commit
7f16eed4
authored
Oct 10, 2001
by
Richard Henderson
Committed by
Richard Henderson
Oct 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (try_combine): Handle a SEQUENCE of one insn.
From-SVN: r46177
parent
59bee412
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
gcc/ChangeLog
+9
-0
gcc/combine.c
+6
-0
No files found.
gcc/ChangeLog
View file @
7f16eed4
2001
-
10
-
10
Richard
Henderson
<
rth
@redhat
.
com
>
*
combine
.
c
(
try_combine
)
:
Handle
a
SEQUENCE
of
one
insn
.
2001
-
10
-
10
Richard
Henderson
<
rth
@redhat
.
com
>
*
langhooks
.
c
:
Include
langhooks
.
h
.
*
Makefile
.
in
(
langhooks
.
o
)
:
Depend
on
it
.
Wed
Oct
10
23
:
49
:
06
EDT
2001
John
Wehle
(
john
@feith
.
com
)
*
rtlanal
.
c
(
noop_move_p
)
:
Insns
with
a
REG_RETVAL
note
...
...
gcc/combine.c
View file @
7f16eed4
...
...
@@ -2132,6 +2132,12 @@ try_combine (i3, i2, i1, new_direct_jump_p)
}
}
/* If we've split a jump pattern, we'll wind up with a sequence even
with one instruction. We can handle that below, so extract it. */
if
(
m_split
&&
GET_CODE
(
m_split
)
==
SEQUENCE
&&
XVECLEN
(
m_split
,
0
)
==
1
)
m_split
=
PATTERN
(
XVECEXP
(
m_split
,
0
,
0
));
if
(
m_split
&&
GET_CODE
(
m_split
)
!=
SEQUENCE
)
{
insn_code_number
=
recog_for_combine
(
&
m_split
,
i3
,
&
new_i3_notes
);
...
...
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