summaryrefslogtreecommitdiff
path: root/tools/llvm-ar
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-11 12:54:11 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-11 12:54:11 +0000
commit55804a089e7ac26d5a07a9ac38e5dcedad3f2754 (patch)
tree54822f221ee4bbd98c404ceb484f107b829d2131 /tools/llvm-ar
parentab7348f8b188270ecbd309d5f0f4696f1f782c9b (diff)
downloadllvm-55804a089e7ac26d5a07a9ac38e5dcedad3f2754.tar.gz
llvm-55804a089e7ac26d5a07a9ac38e5dcedad3f2754.tar.bz2
llvm-55804a089e7ac26d5a07a9ac38e5dcedad3f2754.tar.xz
Delete dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ar')
-rw-r--r--tools/llvm-ar/llvm-ar.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp
index 3d5250ee53..52fb9509d5 100644
--- a/tools/llvm-ar/llvm-ar.cpp
+++ b/tools/llvm-ar/llvm-ar.cpp
@@ -67,7 +67,6 @@ static cl::extrahelp MoreHelp(
" [i] - put file(s) before [relpos] (same as [b])\n"
" [N] - use instance [count] of name\n"
" [o] - preserve original dates\n"
- " [P] - use full path names when matching\n"
" [s] - create an archive index (cf. ranlib)\n"
" [S] - do not build a symbol table\n"
" [u] - update only files newer than archive contents\n"
@@ -95,7 +94,6 @@ bool Create = false; ///< 'c' modifier
bool InsertBefore = false; ///< 'i' modifier
bool UseCount = false; ///< 'N' modifier
bool OriginalDates = false; ///< 'o' modifier
-bool FullPath = false; ///< 'P' modifier
bool SymTable = true; ///< 's' & 'S' modifiers
bool OnlyUpdate = false; ///< 'u' modifier
bool Verbose = false; ///< 'v' modifier
@@ -215,7 +213,6 @@ ArchiveOperation parseCommandLine() {
case 'o': OriginalDates = true; break;
case 's': break; // Ignore for now.
case 'S': break; // Ignore for now.
- case 'P': FullPath = true; break;
case 'u': OnlyUpdate = true; break;
case 'v': Verbose = true; break;
case 'a':