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 | 0ffeaad72cb335b926b064379be4c9886bbff004 (patch) | |
tree | ae65f17995826197170499879dd0d09e728d30b2 /lib/CodeGen/CodeGenModule.h | |
parent | 691222d5c9de39e785f604c41c872279831a507e (diff) |
Get rid of an unneeded parameter from setGlobalVisibility.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 9ac692b263..a56866ad55 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/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. |