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
97ae6b64
Commit
97ae6b64
authored
May 26, 2014
by
Jan Hubicka
Committed by
Jan Hubicka
May 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* symtab.c (symtab_nonoverwritable_alias): Copy READONLY flag for variables.
From-SVN: r210919
parent
936190c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+4
-0
gcc/symtab.c
+6
-2
No files found.
gcc/ChangeLog
View file @
97ae6b64
2014-05-23 Jan Hubicka <hubicka@ucw.cz>
* symtab.c (symtab_nonoverwritable_alias): Copy READONLY flag for variables.
2014-05-23 Jan Hubicka <hubicka@ucw.cz>
* ipa-visibility.c (can_replace_by_local_alias_in_vtable): New function.
(update_vtable_references): New function.
(function_and_variable_visibility): Rewrite also vtable initializers.
...
...
gcc/symtab.c
View file @
97ae6b64
...
...
@@ -1163,9 +1163,13 @@ symtab_nonoverwritable_alias (symtab_node *node)
(
new_decl
,
node
->
decl
);
}
else
new_node
=
varpool_create_variable_alias
(
new_decl
,
node
->
decl
);
{
TREE_READONLY
(
new_decl
)
=
TREE_READONLY
(
node
->
decl
);
new_node
=
varpool_create_variable_alias
(
new_decl
,
node
->
decl
);
}
symtab_resolve_alias
(
new_node
,
node
);
gcc_assert
(
decl_binds_to_current_def_p
(
new_decl
));
gcc_assert
(
decl_binds_to_current_def_p
(
new_decl
)
&&
targetm
.
binds_local_p
(
new_decl
));
return
new_node
;
}
...
...
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