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
7e1b6513
Commit
7e1b6513
authored
Jun 27, 2000
by
Geoffrey Keating
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct previous botched commit.
From-SVN: r34728
parent
ad69b5b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
gcc/ssa.c
+9
-11
No files found.
gcc/ssa.c
View file @
7e1b6513
...
...
@@ -784,10 +784,16 @@ rename_block (bb, idom)
not to the old version inner insn.) */
if
(
get_insns
()
!=
NULL_RTX
)
{
rtx
seq
;
int
i
;
emit
(
PATTERN
(
insn
));
PATTERN
(
insn
)
=
gen_sequence
();
seq
=
gen_sequence
();
/* We really want a SEQUENCE of SETs, not a SEQUENCE
of INSNs. */
for
(
i
=
0
;
i
<
XVECLEN
(
seq
,
0
);
i
++
)
XVECEXP
(
seq
,
0
,
i
)
=
PATTERN
(
XVECEXP
(
seq
,
0
,
i
));
PATTERN
(
insn
)
=
seq
;
}
end_sequence
();
...
...
@@ -1833,17 +1839,9 @@ rename_equivalent_regs (reg_partition)
if
(
slen
<=
1
)
abort
();
PATTERN
(
insn
)
=
PATTERN
(
XVECEXP
(
s
,
0
,
slen
-
1
)
);
PATTERN
(
insn
)
=
XVECEXP
(
s
,
0
,
slen
-
1
);
for
(
i
=
0
;
i
<
slen
-
1
;
i
++
)
{
rtx
new_insn
;
rtx
old_insn
=
XVECEXP
(
s
,
0
,
i
);
new_insn
=
emit_block_insn_before
(
PATTERN
(
old_insn
),
insn
,
b
);
REG_NOTES
(
new_insn
)
=
REG_NOTES
(
old_insn
);
}
emit_block_insn_before
(
XVECEXP
(
s
,
0
,
i
),
insn
,
b
);
}
}
...
...
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