summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/tools/llvm-ar/llvm-ar.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/tools/llvm-ar/llvm-ar.cpp b/llvm/tools/llvm-ar/llvm-ar.cpp
index b63856b9f7f..42c95814ae6 100644
--- a/llvm/tools/llvm-ar/llvm-ar.cpp
+++ b/llvm/tools/llvm-ar/llvm-ar.cpp
@@ -81,7 +81,7 @@ static cl::opt<Format>
clEnumValN(GNU, "gnu", "gnu"),
clEnumValN(BSD, "bsd", "bsd"), clEnumValEnd));
-std::string Options;
+static std::string Options;
// Provide additional help output explaining the operations and modifiers of
// llvm-ar. This object instructs the CommandLine library to print the text of
@@ -436,8 +436,8 @@ static void performReadOperation(ArchiveOperation Operation,
std::exit(1);
}
-void addMember(std::vector<NewArchiveIterator> &Members, StringRef FileName,
- int Pos = -1) {
+static void addMember(std::vector<NewArchiveIterator> &Members,
+ StringRef FileName, int Pos = -1) {
NewArchiveIterator NI(FileName);
if (Pos == -1)
Members.push_back(NI);
@@ -445,8 +445,9 @@ void addMember(std::vector<NewArchiveIterator> &Members, StringRef FileName,
Members[Pos] = NI;
}
-void addMember(std::vector<NewArchiveIterator> &Members,
- const object::Archive::Child &M, StringRef Name, int Pos = -1) {
+static void addMember(std::vector<NewArchiveIterator> &Members,
+ const object::Archive::Child &M, StringRef Name,
+ int Pos = -1) {
if (Thin && !M.getParent()->isThin())
fail("Cannot convert a regular archive to a thin one");
NewArchiveIterator NI(M, Name);
OpenPOWER on IntegriCloud