Index: llvm/trunk/include/llvm/Option/ArgList.h =================================================================== --- llvm/trunk/include/llvm/Option/ArgList.h +++ llvm/trunk/include/llvm/Option/ArgList.h @@ -259,6 +259,9 @@ void AddLastArg(ArgStringList &Output, OptSpecifier Id0, OptSpecifier Id1) const; + /// AddAllArgs - Render all arguments matching any of the given ids. + void AddAllArgs(ArgStringList &Output, ArrayRef Ids) const; + /// AddAllArgs - Render all arguments matching the given ids. void AddAllArgs(ArgStringList &Output, OptSpecifier Id0, OptSpecifier Id1 = 0U, OptSpecifier Id2 = 0U) const; Index: llvm/trunk/lib/Option/ArgList.cpp =================================================================== --- llvm/trunk/lib/Option/ArgList.cpp +++ llvm/trunk/lib/Option/ArgList.cpp @@ -258,6 +258,21 @@ } } +void ArgList::AddAllArgs(ArgStringList &Output, + ArrayRef Ids) const { + for (const Arg *Arg : Args) { + for (OptSpecifier Id : Ids) { + if (Arg->getOption().matches(Id)) { + Arg->claim(); + Arg->render(*this, Output); + break; + } + } + } +} + +/// This 3-opt variant of AddAllArgs could be eliminated in favor of one +/// that accepts a single specifier, given the above which accepts any number. void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const { for (auto Arg: filtered(Id0, Id1, Id2)) {