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
69deb6e0
Commit
69deb6e0
authored
Nov 18, 2001
by
Richard Kenner
Committed by
Richard Kenner
Nov 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sdbout.c (sdbout_symbol): Avoid warning due to &DECL_RTL.
From-SVN: r47148
parent
aa99bd09
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/sdbout.c
+3
-3
No files found.
gcc/ChangeLog
View file @
69deb6e0
Sun
Nov
18
14
:
13
:
52
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
sdbout
.
c
(
sdbout_symbol
)
:
Avoid
warning
due
to
&
DECL_RTL
.
2001
-
11
-
18
Joseph
S
.
Myers
<
jsm28
@cam
.
ac
.
uk
>
*
c
-
decl
.
c
(
c_decode_option
)
:
Give
deprecation
warning
for
...
...
gcc/sdbout.c
View file @
69deb6e0
...
...
@@ -796,7 +796,7 @@ sdbout_symbol (decl, local)
particular compilation. */
if
(
GET_CODE
(
value
)
==
REG
)
{
regno
=
REGNO
(
DECL_RTL
(
decl
)
);
regno
=
REGNO
(
value
);
if
(
regno
>=
FIRST_PSEUDO_REGISTER
)
return
;
}
...
...
@@ -809,8 +809,8 @@ sdbout_symbol (decl, local)
if
(
REGNO
(
value
)
>=
FIRST_PSEUDO_REGISTER
)
return
;
}
regno
=
REGNO
(
alter_subreg
(
&
DECL_RTL
(
decl
)
));
value
=
DECL_RTL
(
decl
);
regno
=
REGNO
(
alter_subreg
(
&
value
));
SET_DECL_RTL
(
decl
,
value
);
}
/* Don't output anything if an auto variable
gets RTL that is static.
...
...
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