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
bfda9a5e
Commit
bfda9a5e
authored
Sep 27, 2016
by
David Edelsohn
Committed by
David Edelsohn
Sep 27, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify VAR_DECL string.
From-SVN: r240540
parent
be594fbc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+5
-0
gcc/config/rs6000/rs6000.c
+4
-1
No files found.
gcc/ChangeLog
View file @
bfda9a5e
2016-09-27 David Edelsohn <dje.gcc@gmail.com>
* config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
VAR_DECL string.
2016-09-27 Marek Polacek <polacek@redhat.com>
* config/ia64/ia64.c (ia64_print_operand): Adjust fall through
...
...
gcc/config/rs6000/rs6000.c
View file @
bfda9a5e
...
...
@@ -30309,7 +30309,10 @@ rs6000_output_symbol_ref (FILE *file, rtx x)
(
TREE_CODE
(
decl
)
==
FUNCTION_DECL
?
"[DS]"
:
"[UA]"
),
NULL
);
XSTR
(
x
,
0
)
=
name
;
/* Don't modify name in extern VAR_DECL to include mapping class. */
if
(
TREE_CODE
(
decl
)
==
FUNCTION_DECL
)
XSTR
(
x
,
0
)
=
name
;
}
if
(
VTABLE_NAME_P
(
name
))
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