diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-22 00:50:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-22 00:50:06 +0000 |
commit | 4f8d123e3e2c260de3377208106ddba87cee28b4 (patch) | |
tree | b9150c20b7def576d853ad5236b9445fdd725b10 /lib/CodeGen/CodeGenModule.h | |
parent | 3eb817e5095d25e7bf4a8df9ed3f9b13bed6f298 (diff) |
Move getAccessedFieldNo out of lib/AST/Expr.cpp into
lib/CodeGen/CGExpr.cpp and to change include/clang/AST/Attr.h to
use its own enum for visibility types instead of using
llvm::GlobalValue::VisibilityTypes. These changes eliminate
dependencies in the AST library on LLVM's VMCore library.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51398 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 8a3069e648..bc216e4f48 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -16,6 +16,7 @@ #include "CodeGenTypes.h" #include "CGObjCRuntime.h" +#include "clang/AST/Attr.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringMap.h" @@ -130,6 +131,11 @@ public: /// specified decl yet. void WarnUnsupported(const Decl *D, const char *Type); + /// setVisibility - Set the visibility for the given LLVM GlobalValue + /// according to the given clang AST visibility value. + static void setVisibility(llvm::GlobalValue *GV, + VisibilityAttr::VisibilityTypes); + private: /// ReplaceMapValuesWith - This is a really slow and bad function that /// searches for any entries in GlobalDeclMap that point to OldVal, changing |