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
ba444f92
Commit
ba444f92
authored
Nov 15, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(gen_rtvec_vv): New function.
(copy_rtx_if_shared): Call it. From-SVN: r13167
parent
59888de2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletions
+20
-1
gcc/emit-rtl.c
+20
-1
No files found.
gcc/emit-rtl.c
View file @
ba444f92
...
...
@@ -470,6 +470,25 @@ gen_rtvec_v (n, argp)
return
rt_val
;
}
rtvec
gen_rtvec_vv
(
n
,
argp
)
int
n
;
rtunion
*
argp
;
{
register
int
i
;
register
rtvec
rt_val
;
if
(
n
==
0
)
return
NULL_RTVEC
;
/* Don't allocate an empty rtvec... */
rt_val
=
rtvec_alloc
(
n
);
/* Allocate an rtvec... */
for
(
i
=
0
;
i
<
n
;
i
++
)
rt_val
->
elem
[
i
].
rtx
=
(
argp
++
)
->
rtx
;
return
rt_val
;
}
/* Generate a REG rtx for a new pseudo register of mode MODE.
This pseudo is assigned the next sequential register number. */
...
...
@@ -1664,7 +1683,7 @@ copy_rtx_if_shared (orig)
int
len
=
XVECLEN
(
x
,
i
);
if
(
copied
&&
len
>
0
)
XVEC
(
x
,
i
)
=
gen_rtvec_v
(
len
,
&
XVECEXP
(
x
,
i
,
0
)
);
XVEC
(
x
,
i
)
=
gen_rtvec_v
v
(
len
,
XVEC
(
x
,
i
)
->
elem
);
for
(
j
=
0
;
j
<
len
;
j
++
)
XVECEXP
(
x
,
i
,
j
)
=
copy_rtx_if_shared
(
XVECEXP
(
x
,
i
,
j
));
}
...
...
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