diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-11 12:54:11 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-11 12:54:11 +0000 |
commit | e132160e7ef284fb386df0ca17ec3021bae17393 (patch) | |
tree | 3e6494d6a148a4a35a3bd379bbcf7bd80eb77547 /llvm/tools | |
parent | 4d7b3be00ba461a7b4974722165ce5cd2af39cb1 (diff) | |
download | bcm5719-llvm-e132160e7ef284fb386df0ca17ec3021bae17393.tar.gz bcm5719-llvm-e132160e7ef284fb386df0ca17ec3021bae17393.zip |
Delete dead code.
llvm-svn: 186079
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-ar/llvm-ar.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/tools/llvm-ar/llvm-ar.cpp b/llvm/tools/llvm-ar/llvm-ar.cpp index 3d5250ee53b..52fb9509d5c 100644 --- a/llvm/tools/llvm-ar/llvm-ar.cpp +++ b/llvm/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': |