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
27108369
Commit
27108369
authored
Nov 15, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(copy_for_inline): Call gen_rtvec_vv.
From-SVN: r13169
parent
da3a3ba6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gcc/integrate.c
+1
-1
gcc/reload1.c
+2
-2
No files found.
gcc/integrate.c
View file @
27108369
...
...
@@ -1148,7 +1148,7 @@ copy_for_inline (orig)
{
register
int
j
;
XVEC
(
x
,
i
)
=
gen_rtvec_v
(
XVECLEN
(
x
,
i
),
&
XVECEXP
(
x
,
i
,
0
)
);
XVEC
(
x
,
i
)
=
gen_rtvec_v
v
(
XVECLEN
(
x
,
i
),
XVEC
(
x
,
i
)
->
elem
);
for
(
j
=
0
;
j
<
XVECLEN
(
x
,
i
);
j
++
)
XVECEXP
(
x
,
i
,
j
)
=
copy_for_inline
(
XVECEXP
(
x
,
i
,
j
));
...
...
gcc/reload1.c
View file @
27108369
...
...
@@ -3166,8 +3166,8 @@ eliminate_regs (x, mem_mode, insn)
new
=
eliminate_regs
(
XVECEXP
(
x
,
i
,
j
),
mem_mode
,
insn
);
if
(
new
!=
XVECEXP
(
x
,
i
,
j
)
&&
!
copied_vec
)
{
rtvec
new_v
=
gen_rtvec_v
(
XVECLEN
(
x
,
i
),
&
XVECEXP
(
x
,
i
,
0
)
);
rtvec
new_v
=
gen_rtvec_v
v
(
XVECLEN
(
x
,
i
),
XVEC
(
x
,
i
)
->
elem
);
if
(
!
copied
)
{
rtx
new_x
=
rtx_alloc
(
code
);
...
...
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