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
0c0ba09c
Commit
0c0ba09c
authored
Nov 12, 2000
by
Jakub Jelinek
Committed by
Jakub Jelinek
Nov 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (set_label_offsets): Go inside of PARALLELs.
From-SVN: r37409
parent
84a0e7b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/reload1.c
+4
-3
No files found.
gcc/ChangeLog
View file @
0c0ba09c
2000-11-12 Jakub Jelinek <jakub@redhat.com>
* reload1.c (set_label_offsets): Go inside of PARALLELs.
2000-11-12 Joseph S. Myers <jsm28@cam.ac.uk>
* invoke.texi: Clean up option summary.
...
...
gcc/reload1.c
View file @
0c0ba09c
...
...
@@ -2089,11 +2089,12 @@ set_label_offsets (x, insn, initial_p)
set_label_offsets
(
XEXP
(
tem
,
0
),
insn
,
1
);
return
;
case
PARALLEL
:
case
ADDR_VEC
:
case
ADDR_DIFF_VEC
:
/* Each of the labels in the
address vector must be at their initial
offsets. We want the first field for ADDR_VEC and the second
field for ADDR_DIFF_VEC. */
/* Each of the labels in the
parallel or address vector must be
at their initial offsets. We want the first field for PARALLEL
and ADDR_VEC and the second
field for ADDR_DIFF_VEC. */
for
(
i
=
0
;
i
<
(
unsigned
)
XVECLEN
(
x
,
code
==
ADDR_DIFF_VEC
);
i
++
)
set_label_offsets
(
XVECEXP
(
x
,
code
==
ADDR_DIFF_VEC
,
i
),
...
...
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