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
3fd40684
Commit
3fd40684
authored
Sep 06, 2007
by
Jason Merrill
Committed by
Jason Merrill
Sep 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl2.c (get_guard): Copy visibility from the guarded variable.
From-SVN: r128226
parent
bd1a56a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
gcc/cp/ChangeLog
+4
-0
gcc/cp/decl2.c
+2
-0
gcc/testsuite/g++.dg/ext/visibility/guard1.C
+29
-0
No files found.
gcc/cp/ChangeLog
View file @
3fd40684
2007-09-06 Jason Merrill <jason@redhat.com>
* decl2.c (get_guard): Copy visibility from the guarded variable.
2007-09-06 Jan Hubicka <jh@suse.cz>
* semantics.c (expand_body): Do not mark arguments of clones used.
...
...
gcc/cp/decl2.c
View file @
3fd40684
...
...
@@ -2215,6 +2215,8 @@ get_guard (tree decl)
DECL_ONE_ONLY
(
guard
)
=
DECL_ONE_ONLY
(
decl
);
if
(
TREE_PUBLIC
(
decl
))
DECL_WEAK
(
guard
)
=
DECL_WEAK
(
decl
);
DECL_VISIBILITY
(
guard
)
=
DECL_VISIBILITY
(
decl
);
DECL_VISIBILITY_SPECIFIED
(
guard
)
=
DECL_VISIBILITY_SPECIFIED
(
decl
);
DECL_ARTIFICIAL
(
guard
)
=
1
;
DECL_IGNORED_P
(
guard
)
=
1
;
...
...
gcc/testsuite/g++.dg/ext/visibility/guard1.C
0 → 100644
View file @
3fd40684
// { dg-options "-fvisibility=hidden" }
// { dg-require-visibility "" }
// { dg-final { scan-not-hidden "_ZGVZN5otherclEvE4s_cd" } }
extern
"C"
int
printf
(
const
char
*
,
...);
#define DLLEXPORT __attribute__ ((visibility("default")))
struct
class_data
{
int
apple
;
class_data
()
{
printf
(
"non trivial ctor
\n
"
);
}
};
struct
DLLEXPORT
other
{
class_data
*
operator
()()
{
static
class_data
s_cd
;
return
&
s_cd
;
}
};
int
main
()
{
other
aFoo
;
aFoo
();
return
0
;
}
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