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
75c437de
Commit
75c437de
authored
Apr 23, 1999
by
Nick Clifton
Committed by
Nick Clifton
Apr 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display LABEL_NUSES when printing a code label
From-SVN: r26600
parent
7817b2b3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+4
-0
gcc/print-rtl.c
+3
-0
No files found.
gcc/ChangeLog
View file @
75c437de
Fri
Apr
23
09
:
43
:
18
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
print
-
rtl
.
c
(
print_rtx
)
:
Display
LABEL_NUSES
for
labels
.
Thu
Apr
22
23
:
08
:
37
1999
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
toplev
.
h
(
wrapup_global_declarations
)
:
Declare
.
...
...
gcc/print-rtl.c
View file @
75c437de
...
...
@@ -318,6 +318,9 @@ print_rtx (in_rtx)
}
#endif
if
(
GET_CODE
(
in_rtx
)
==
CODE_LABEL
)
fprintf
(
outfile
,
" [num uses: %d]"
,
LABEL_NUSES
(
in_rtx
));
if
(
dump_for_graph
&&
(
is_insn
||
GET_CODE
(
in_rtx
)
==
NOTE
||
GET_CODE
(
in_rtx
)
==
CODE_LABEL
||
GET_CODE
(
in_rtx
)
==
BARRIER
))
...
...
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