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
d5e3e85b
Commit
d5e3e85b
authored
25 years ago
by
Richard Henderson
Committed by
Richard Henderson
25 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* print-rtl.c (print_rtx): Limit last 'u' change to LABEL_REF.
From-SVN: r30024
parent
810c1b83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+4
-0
gcc/print-rtl.c
+3
-4
No files found.
gcc/ChangeLog
View file @
d5e3e85b
Fri
Oct
15
14
:
25
:
19
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
print
-
rtl
.
c
(
print_rtx
)
:
Limit
last
'u'
change
to
LABEL_REF
.
Fri
Oct
15
13
:
48
:
45
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
mips
.
c
(
function_prologue
)
:
Fix
argument
types
.
...
...
This diff is collapsed.
Click to expand it.
gcc/print-rtl.c
View file @
d5e3e85b
...
...
@@ -302,9 +302,8 @@ print_rtx (in_rtx)
rtx
sub
=
XEXP
(
in_rtx
,
i
);
enum
rtx_code
subc
=
GET_CODE
(
sub
);
if
(
subc
!=
CODE_LABEL
&&
subc
!=
NOTE
&&
GET_RTX_CLASS
(
subc
)
!=
'i'
)
if
(
GET_CODE
(
in_rtx
)
==
LABEL_REF
&&
subc
!=
CODE_LABEL
)
goto
do_e
;
if
(
flag_dump_unnumbered
)
...
...
@@ -313,7 +312,7 @@ print_rtx (in_rtx)
fprintf
(
outfile
,
" %d"
,
INSN_UID
(
sub
));
}
else
fputs
(
"
(nil)
"
,
outfile
);
fputs
(
"
0
"
,
outfile
);
sawclose
=
0
;
break
;
...
...
This diff is collapsed.
Click to expand it.
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