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
d1d61788
Commit
d1d61788
authored
Mar 15, 2001
by
Mark Mitchell
Committed by
Mark Mitchell
Mar 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* varasm.c (assemble_variable): Use DECL_RTL_SET_P.
From-SVN: r40495
parent
15f13f01
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/java/ChangeLog
+2
-1
gcc/varasm.c
+1
-1
No files found.
gcc/ChangeLog
View file @
d1d61788
2001-03-15 Mark Mitchell <mark@codesourcery.com>
* varasm.c (assemble_variable): Use DECL_RTL_SET_P.
2001-03-15 Neil Booth <neil@daikokuya.demon.co.uk>
2001-03-15 Neil Booth <neil@daikokuya.demon.co.uk>
* cpp.texi: Update documentation for -include and -imacros.
* cpp.texi: Update documentation for -include and -imacros.
...
...
gcc/java/ChangeLog
View file @
d1d61788
2001-03-14 Mark Mitchell <mark@codesourcery.com>
2001-03-14 Mark Mitchell <mark@codesourcery.com>
* class.c (build_static_field_ref): Likewise.
* class.c (build_static_field_ref): Use COPY_DECL_RTL,
DECL_RTL_SET_P, etc.
(make_method_value): Likewise.
(make_method_value): Likewise.
(get_dispatch_table): Likewise.
(get_dispatch_table): Likewise.
...
...
gcc/varasm.c
View file @
d1d61788
...
@@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
...
@@ -1245,7 +1245,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
last_assemble_variable_decl
=
0
;
last_assemble_variable_decl
=
0
;
if
(
GET_CODE
(
DECL_RTL
(
decl
))
==
REG
)
if
(
DECL_RTL_SET_P
(
decl
)
&&
GET_CODE
(
DECL_RTL
(
decl
))
==
REG
)
{
{
/* Do output symbol info for global register variables, but do nothing
/* Do output symbol info for global register variables, but do nothing
else for them. */
else for them. */
...
...
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