projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e20a09
)
Actually parse q operation in llvm-ar
author
Seo Sanghyeon
<sanxiyn@gmail.com>
Tue, 25 Dec 2007 13:53:47 +0000
(13:53 +0000)
committer
Seo Sanghyeon
<sanxiyn@gmail.com>
Tue, 25 Dec 2007 13:53:47 +0000
(13:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45353
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/llvm-ar/llvm-ar.cpp
patch
|
blob
|
history
diff --git
a/tools/llvm-ar/llvm-ar.cpp
b/tools/llvm-ar/llvm-ar.cpp
index 1df8a92bdf8cfe96757753cb429339cc7b511464..b885a8a2e72bc9bc94f3891b96d46f4718e7f697 100644
(file)
--- 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;