summaryrefslogtreecommitdiff
path: root/lib/Option
AgeCommit message (Expand)Author
2017-10-15Reverting r315590; it did not include changes for llvm-tblgen, which is causi...Aaron Ballman
2017-10-12[dump] Remove NDEBUG from test to enable dump methods [NFC]Don Hinton
2017-08-29Revert "Revert r311552: [Bash-autocompletion] Add support for static analyzer...Yuka Takahashi
2017-08-24test commit: fix typo in commentNathan Hawes
2017-08-23Revert r311552: [Bash-autocompletion] Add support for static analyzer flagsRui Ueyama
2017-08-23[Bash-autocompletion] Add support for static analyzer flagsYuka Takahashi
2017-07-26[Bash-autocompletion] Show HelpText with possible flagsYuka Takahashi
2017-07-26[libOption] - Add flag allowing to print options aliases in help text.George Rimar
2017-07-18[libOption] - Replace std::pair with helper struct. NFC.George Rimar
2017-07-08[Bash-autocompletion] Auto complete cc1 options if -cc1 is specifiedYuka Takahashi
2017-07-05[Bash-autocompletion] Show flags which has HelpText or GroupIDYuka Takahashi
2017-06-20[GSoC] Flag value completion for clangYuka Takahashi
2017-06-16[BinaryFormat, Option, TableGen] Fix some Clang-tidy modernize-use-using and ...Eugene Zelenko
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth
2017-05-23[GSoC] Shell autocompletion for clangYuka Takahashi
2017-04-12ArgList: cache index ranges containing arguments with each IDRichard Smith
2017-01-28Cleanup dump() functions.Matthias Braun
2016-09-29Generalize ArgList::AddAllArgs moreDouglas Katzman
2016-08-17Replace "fallthrough" comments with LLVM_FALLTHROUGHJustin Bogner
2016-08-12Use the range variant of remove_if instead of unpacking begin/endDavid Majnemer
2016-08-11Use the range variant of find instead of unpacking begin/endDavid Majnemer
2016-04-15Option parser: class for consuming a joined arg in addition to all remaining ...Hans Wennborg
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren
2016-01-26Remove autoconf supportChris Bieneman
2015-12-18Convert Arg, ArgList, and Option to dump() to dbgs() rather than errs().Eric Christopher
2015-12-18Add a dump method for ArgList.Eric Christopher
2015-12-18Revert "[Option] Introduce Arg::print(raw_ostream&) and use llvm::dbgs"Vedant Kumar
2015-12-18[Option] Introduce Arg::print(raw_ostream&) and use llvm::dbgsVedant Kumar
2015-10-21[Option] Use an ArrayRef to store the Option Infos in OptTable. NFCCraig Topper
2015-07-29Add an ArgList::AddAllArgs that accepts a vector of OptSpecifier.Douglas Katzman
2015-06-23[Option] Plug a leak when move-assigning an InputArgList.Benjamin Kramer
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko
2015-06-22Code cleanup: Remove std::move() around xvalue (NFC)Logan Chien
2015-06-22Modify ParseArgs to return the InputArgList by value - there's no need for dy...David Blaikie
2015-06-21Devirtualize ArgList's dtor now that -Wvirtual-dtor and C++11 allow a better ...David Blaikie
2015-06-21ArrayRef-ify ParseArgsDavid Blaikie
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko
2015-05-04Option parsing: properly handle flag aliases for joined options (PR23394)Hans Wennborg
2015-03-30Remove more superfluous .str() and replace std::string concatenation with Twine.Yaron Keren
2015-03-20Make getLastArgNoClaim work for up to 4 arguments.Filipe Cabecinhas
2015-03-17Teach Twine to support SmallString.Yaron Keren
2015-03-16Fix uses of reserved identifiers starting with an underscore followed by an u...David Blaikie
2015-03-03Remove explicit no-op dtor in favor of the implicit dtor so as not to disable...David Blaikie
2015-02-17Prefer SmallVector::append/insert over push_back loops.Benjamin Kramer
2015-02-11Use ADDITIONAL_HEADER_DIRS in all LLVM CMake projects.Zachary Turner
2015-01-14[cleanup] Re-sort all the #include lines in LLVM usingChandler Carruth
2014-09-12Add an overload of getLastArgNoClaim taking two OptSpecifiers.Ehsan Akhgari
2014-08-22Fix PR17239 by changing the semantics of the RemainingArgsClass Option kindReid Kleckner
2014-08-15[Option] Support MultiArg in --helpNick Kledzik
2014-07-09Generic: add range-adapter for option parsing.Tim Northover