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
1dd8faa8
Commit
1dd8faa8
authored
Mar 04, 1998
by
J"orn Rennecke
Committed by
Joern Rennecke
Mar 04, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* final.c (final_scan_insn, case CODE_LABEL: Cleanup.
From-SVN: r18398
parent
923f7cf9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+4
-0
gcc/final.c
+3
-4
No files found.
gcc/ChangeLog
View file @
1dd8faa8
Wed Mar 4 18:47:48 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* final.c (final_scan_insn, case CODE_LABEL: Cleanup.
Wed Mar 4 15:51:19 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
Wed Mar 4 15:51:19 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* final.c (shorten_branches): Tag the loop alignment onto the
* final.c (shorten_branches): Tag the loop alignment onto the
...
...
gcc/final.c
View file @
1dd8faa8
...
@@ -2020,14 +2020,13 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
...
@@ -2020,14 +2020,13 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
break
;
break
;
case
CODE_LABEL
:
case
CODE_LABEL
:
/* The target port might emit labels in the output function for
some insn, e.g. sh.c output_branchy_insn. */
if
(
CODE_LABEL_NUMBER
(
insn
)
<=
max_labelno
)
if
(
CODE_LABEL_NUMBER
(
insn
)
<=
max_labelno
)
{
{
int
align
=
LABEL_TO_ALIGNMENT
(
insn
);
int
align
=
LABEL_TO_ALIGNMENT
(
insn
);
/* The target port might emit labels in the output function for
if
(
align
&&
NEXT_INSN
(
insn
))
some insn, e.g. sh.c output_branchy_insn. */
if
(
align
&&
NEXT_INSN
(
insn
)
&&
CODE_LABEL_NUMBER
(
insn
)
<=
max_labelno
)
ASM_OUTPUT_ALIGN
(
file
,
align
);
ASM_OUTPUT_ALIGN
(
file
,
align
);
}
}
CC_STATUS_INIT
;
CC_STATUS_INIT
;
...
...
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