diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-08-05 06:57:20 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2010-08-05 06:57:20 +0000 |
commit | aa8b0d19244a6e7e8e5798fcc6aef003c274d3e0 (patch) | |
tree | 0e384e8e18332ce359ebd014a89294db615176fa /include/clang/Parse/Action.h | |
parent | c133e9ea17d61062bcfb3bd6009c300c9a78161f (diff) |
Implement #pragma GCC visibility.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110315 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index d5cbd0cde3..e1a8ffbb7a 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -2734,6 +2734,14 @@ public: return; } + + /// ActOnPragmaVisibility - Called on well formed #pragma GCC visibility... . + virtual void ActOnPragmaVisibility(bool IsPush, const IdentifierInfo* VisType, + SourceLocation PragmaLoc) { + return; + } + + /// ActOnPragmaWeakID - Called on well formed #pragma weak ident. virtual void ActOnPragmaWeakID(IdentifierInfo* WeakName, SourceLocation PragmaLoc, |