index
:
~gabbayo/llvm
base
master
Unnamed repository; edit this file 'description' to name the repository.
UNKNOWN
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Option
Age
Commit message (
Expand
)
Author
Files
Lines
2016-04-15
Option parser: class for consuming a joined arg in addition to all remaining ...
Hans Wennborg
2
-1
/
+15
2016-01-29
Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...
Yaron Keren
1
-1
/
+1
2016-01-26
Remove autoconf support
Chris Bieneman
1
-14
/
+0
2015-12-18
Convert Arg, ArgList, and Option to dump() to dbgs() rather than errs().
Eric Christopher
3
-26
/
+35
2015-12-18
Add a dump method for ArgList.
Eric Christopher
1
-0
/
+7
2015-12-18
Revert "[Option] Introduce Arg::print(raw_ostream&) and use llvm::dbgs"
Vedant Kumar
1
-12
/
+9
2015-12-18
[Option] Introduce Arg::print(raw_ostream&) and use llvm::dbgs
Vedant Kumar
1
-9
/
+12
2015-10-21
[Option] Use an ArrayRef to store the Option Infos in OptTable. NFC
Craig Topper
1
-7
/
+5
2015-07-29
Add an ArgList::AddAllArgs that accepts a vector of OptSpecifier.
Douglas Katzman
1
-0
/
+15
2015-06-23
[Option] Plug a leak when move-assigning an InputArgList.
Benjamin Kramer
1
-6
/
+6
2015-06-23
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
1
-2
/
+2
2015-06-22
Code cleanup: Remove std::move() around xvalue (NFC)
Logan Chien
1
-1
/
+1
2015-06-22
Modify ParseArgs to return the InputArgList by value - there's no need for dy...
David Blaikie
1
-11
/
+11
2015-06-21
Devirtualize ArgList's dtor now that -Wvirtual-dtor and C++11 allow a better ...
David Blaikie
1
-5
/
+0
2015-06-21
ArrayRef-ify ParseArgs
David Blaikie
1
-4
/
+3
2015-06-19
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
1
-2
/
+2
2015-05-04
Option parsing: properly handle flag aliases for joined options (PR23394)
Hans Wennborg
1
-0
/
+5
2015-03-30
Remove more superfluous .str() and replace std::string concatenation with Twine.
Yaron Keren
1
-1
/
+1
2015-03-20
Make getLastArgNoClaim work for up to 4 arguments.
Filipe Cabecinhas
1
-0
/
+20
2015-03-17
Teach Twine to support SmallString.
Yaron Keren
1
-7
/
+2
2015-03-16
Fix uses of reserved identifiers starting with an underscore followed by an u...
David Blaikie
3
-25
/
+19
2015-03-03
Remove explicit no-op dtor in favor of the implicit dtor so as not to disable...
David Blaikie
1
-3
/
+0
2015-02-17
Prefer SmallVector::append/insert over push_back loops.
Benjamin Kramer
2
-10
/
+6
2015-02-11
Use ADDITIONAL_HEADER_DIRS in all LLVM CMake projects.
Zachary Turner
1
-0
/
+3
2015-01-14
[cleanup] Re-sort all the #include lines in LLVM using
Chandler Carruth
1
-1
/
+1
2014-09-12
Add an overload of getLastArgNoClaim taking two OptSpecifiers.
Ehsan Akhgari
1
-0
/
+9
2014-08-22
Fix PR17239 by changing the semantics of the RemainingArgsClass Option kind
Reid Kleckner
2
-4
/
+13
2014-08-15
[Option] Support MultiArg in --help
Nick Kledzik
1
-1
/
+12
2014-07-09
Generic: add range-adapter for option parsing.
Tim Northover
1
-17
/
+13
2014-06-26
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
1
-2
/
+4
2014-06-26
Introduce a string_ostream string builder facilty
Alp Toker
1
-4
/
+2
2014-06-20
ArgList: use MakeArgList overloads in subclasses and clean up some calls.
Justin Bogner
1
-15
/
+11
2014-05-18
Options: Use erase_if to remove Args from the list.
Benjamin Kramer
1
-8
/
+3
2014-04-20
Protect the ArgList dtor
David Blaikie
1
-5
/
+0
2014-04-20
Use unique_ptr to handle ownership of synthesized args in DerivedArgList
David Blaikie
1
-27
/
+26
2014-04-15
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
3
-24
/
+24
2013-12-03
Avoid buffer copies when a Twine already is a StringRef.
David Blaikie
1
-2
/
+1
2013-11-04
Use startswith_lower() where possible.
Jakub Staszak
1
-8
/
+1
2013-09-10
Fix another mistake in r190442.
Eli Friedman
1
-0
/
+29
2013-09-10
Remove unused functions.
Eli Friedman
1
-30
/
+0
2013-08-28
Option parsing: support case-insensitive option matching.
Rui Ueyama
1
-21
/
+41
2013-08-28
Revert "Option parsing: support case-insensitive option matching." as it brok...
Rui Ueyama
1
-48
/
+34
2013-08-27
Option parsing: support case-insensitive option matching.
Rui Ueyama
1
-34
/
+48
2013-08-13
Options: explicit handling of --
Hans Wennborg
1
-16
/
+0
2013-08-13
Options: Add new option kind that consumes remaining arguments
Hans Wennborg
2
-0
/
+14
2013-08-06
Option/CMakeLists.txt: Don't use target_link_libraries. LLVMBuild knows depen...
NAKAMURA Takumi
1
-2
/
+0
2013-08-02
Option parsing: recognize the special -- token
Hans Wennborg
1
-1
/
+16
2013-07-31
Option parsing: add support for alias arguments.
Hans Wennborg
1
-2
/
+20
2013-07-22
Silence gcc warning.
Richard Trieu
1
-1
/
+1
2013-07-22
Option parsing: allow aliases in groups
Hans Wennborg
1
-6
/
+4
[next]