[llvm] r186079 - Delete dead code.
Rafael Espindola
rafael.espindola at gmail.com
Thu Jul 11 05:54:11 PDT 2013
Author: rafael
Date: Thu Jul 11 07:54:11 2013
New Revision: 186079
URL: http://llvm.org/viewvc/llvm-project?rev=186079&view=rev
Log:
Delete dead code.
Modified:
llvm/trunk/tools/llvm-ar/llvm-ar.cpp
Modified: llvm/trunk/tools/llvm-ar/llvm-ar.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-ar/llvm-ar.cpp?rev=186079&r1=186078&r2=186079&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-ar/llvm-ar.cpp (original)
+++ llvm/trunk/tools/llvm-ar/llvm-ar.cpp Thu Jul 11 07:54:11 2013
@@ -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
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':
More information about the llvm-commits
mailing list