Make helper functions static.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212460 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer
2014-07-07 14:47:51 +00:00
parent a15d70370e
commit 0e278ad08b
3 changed files with 5 additions and 5 deletions

View File

@ -760,7 +760,7 @@ getCOFFSectionFlags(SectionKind K) {
return Flags;
}
const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
static const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
const Comdat *C = GV->getComdat();
assert(C && "expected GV to have a Comdat!");