From: Seo Sanghyeon Date: Tue, 25 Dec 2007 13:53:47 +0000 (+0000) Subject: Actually parse q operation in llvm-ar X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dc32d19c1c8f976e078784da09df1095077738d7;p=oota-llvm.git Actually parse q operation in llvm-ar git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45353 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp index 1df8a92bdf8..b885a8a2e72 100644 --- a/tools/llvm-ar/llvm-ar.cpp +++ b/tools/llvm-ar/llvm-ar.cpp @@ -188,6 +188,7 @@ ArchiveOperation parseCommandLine() { case 'd': ++NumOperations; Operation = Delete; break; case 'm': ++NumOperations; Operation = Move ; break; case 'p': ++NumOperations; Operation = Print; break; + case 'q': ++NumOperations; Operation = QuickAppend; break; case 'r': ++NumOperations; Operation = ReplaceOrInsert; break; case 't': ++NumOperations; Operation = DisplayTable; break; case 'x': ++NumOperations; Operation = Extract; break;