diff options
author | Anders Carlsson <andersca@mac.com> | 2011-01-29 19:39:23 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2011-01-29 19:39:23 +0000 |
commit | c6a47895f73b8e4489b4a724942bad439c6dde3f (patch) | |
tree | ad4313feedd8ac7a4d20e34f0b605ecb1a4450f9 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 5963024ff6e93555e0f0f1b1565c52ca72960a64 (diff) | |
download | bcm5719-llvm-c6a47895f73b8e4489b4a724942bad439c6dde3f.tar.gz bcm5719-llvm-c6a47895f73b8e4489b4a724942bad439c6dde3f.zip |
Get rid of an unneeded parameter from setGlobalVisibility.
llvm-svn: 124541
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 9ac692b2638..a56866ad55e 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -259,8 +259,7 @@ public: /// setGlobalVisibility - Set the visibility for the given LLVM /// GlobalValue. - void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D, - bool IsForDefinition) const; + void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const; /// setTypeVisibility - Set the visibility for the given global /// value which holds information about a type. |