summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorEhsan Akhgari <ehsan.akhgari@gmail.com>2014-09-12 19:42:53 +0000
committerEhsan Akhgari <ehsan.akhgari@gmail.com>2014-09-12 19:42:53 +0000
commit63e3a29ff3e4050e615a56127b7789cdc15f520f (patch)
tree3d54b5f00939881bc1c4140396393f5c463bfedf /llvm
parent190064ad0d122e68caca080014b2640ee883f3b6 (diff)
downloadbcm5719-llvm-63e3a29ff3e4050e615a56127b7789cdc15f520f.tar.gz
bcm5719-llvm-63e3a29ff3e4050e615a56127b7789cdc15f520f.zip
Add an overload of getLastArgNoClaim taking two OptSpecifiers.
Summary: This will be used in clang. Test Plan: Will be tested on the clang side. Reviewers: hansw Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D5337 llvm-svn: 217702
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Option/ArgList.h1
-rw-r--r--llvm/lib/Option/ArgList.cpp9
2 files changed, 10 insertions, 0 deletions
diff --git a/llvm/include/llvm/Option/ArgList.h b/llvm/include/llvm/Option/ArgList.h
index d46b0e892fa..3f8547e7fe4 100644
--- a/llvm/include/llvm/Option/ArgList.h
+++ b/llvm/include/llvm/Option/ArgList.h
@@ -187,6 +187,7 @@ public:
///
/// \p Claim Whether the argument should be claimed, if it exists.
Arg *getLastArgNoClaim(OptSpecifier Id) const;
+ Arg *getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const;
Arg *getLastArg(OptSpecifier Id) const;
Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const;
Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const;
diff --git a/llvm/lib/Option/ArgList.cpp b/llvm/lib/Option/ArgList.cpp
index 5848bb11bfa..041e5522f47 100644
--- a/llvm/lib/Option/ArgList.cpp
+++ b/llvm/lib/Option/ArgList.cpp
@@ -54,6 +54,15 @@ Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
return nullptr;
}
+Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const {
+ // FIXME: Make search efficient?
+ for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
+ if ((*it)->getOption().matches(Id0) ||
+ (*it)->getOption().matches(Id1))
+ return *it;
+ return nullptr;
+}
+
Arg *ArgList::getLastArg(OptSpecifier Id) const {
Arg *Res = nullptr;
for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
OpenPOWER on IntegriCloud