Fixing broken bots.
[oota-llvm.git] / lib / Support / CommandLine.cpp
2009-11-20 Mikhail GlushenkovMove the handling of CommaSeparated options into Provid...
2009-11-19 Mikhail GlushenkovTrailing whitespace.
2009-11-17 Benjamin KramerRevert CPU detection code to return "generic" instead...
2009-11-14 Daniel DunbarReport the detected host CPU in --version.
2009-11-11 Sandeep PatelShow command-line args and features passed into backend...
2009-10-06 Nicolas GeoffrayBugfix for the CommaSeparated option. The original...
2009-09-24 Chris Lattnerreapply r82348 with a fix, thanks Jeffrey.
2009-09-24 Jeffrey YasskinRoll back r82348, which introduced an infinite loop...
2009-09-20 Chris Lattnertidy up
2009-09-20 Chris Lattnersmallvectorize getExtraOptionNames
2009-09-20 Chris Lattnerminor cleanups.
2009-09-20 Chris Lattnerstrength reduce further StringRef-> const char*, saving...
2009-09-20 Chris Lattnerswitch an std::string to StringRef, shaving 400 bytes...
2009-09-20 Chris Lattnerthe switch from std::map -> StringMap caused --help...
2009-09-20 Chris Lattnereliminate the duplicate detection loop, moving it into...
2009-09-20 Chris LattnerEliminate a masochistic "algorithm" loop, shrinking...
2009-09-20 Chris Lattnerdon't use count + insert, just do insert + failure...
2009-09-20 Chris Lattnerswitch to SmallPtrSet instead of std::set, saving 1K...
2009-09-20 Chris Lattnerchange an std::sort to an array_pod_sort call, shrinkin...
2009-09-20 Chris LattnerSeveral changes together in a murky mess:
2009-09-20 Daniel DunbarFix refacto, this code was expecting to stride past...
2009-09-20 Chris Lattnerconvert argname to StringRef, simplifying LookupOption.
2009-09-20 Chris Lattnerconvert 'Value' to StringRef which makes it easier to
2009-09-20 Chris LattnerChange CommaSeparated processing to do it with StringRe...
2009-09-20 Chris Lattnerrewrite ParseCStringVector in terms of stringref.
2009-09-20 Chris Lattnercoding style cleanup
2009-09-20 Chris Lattnerconvert a bunch more stuff to use StringRef. The ArgNa...
2009-09-20 Chris Lattneravoid a bunch of malloc thrashing for PositinoalVals...
2009-09-19 Chris LattnerAvoid some temporary strings.
2009-09-19 Chris Lattnerconvert a bunch of std::strings to use StringRef. ...
2009-09-19 Benjamin KramerTry to speed up the slowest parts of the CommandLine...
2009-09-02 Daniel DunbarShow derived host triple in --version.
2009-08-23 Chris Lattnerclean up #includes.
2009-08-23 Benjamin KramerRemove uses of Streams.h from CommandLine.cpp, fix...
2009-08-23 Chris Lattnerremove some uses of llvm/Support/Streams.h
2009-08-02 Benjamin KramerRemove duplicated colons and spaces.
2009-07-26 Daniel DunbarSort list of targets in --version.
2009-07-16 Daniel DunbarAdd registered target list to --version output.
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-07-11 Torok EdwinConvert more assert(0)+abort() -> LLVM_UNREACHABLE,
2009-04-29 Bill WendlingAdd support for a character after a command line option...
2009-04-08 Chris LattnerRemove AllowInverse: it leaks memory and is not the...
2009-04-01 Misha Brukman* Fixed spelling of `invertible'
2009-03-28 Chris Lattnermove a large method out of line.
2009-02-02 Mike StumpImprove -fno-opt style option processing to not require...
2009-01-30 Mike StumpAdd opposite_of and inverse_opt to support -fno- style...
2009-01-28 Mikhail GlushenkovClarify comment.
2009-01-21 Mikhail GlushenkovMimic gcc behaviour with regard to response files.
2009-01-16 Mikhail GlushenkovSupport for multi-valued options in CommandLine
2008-12-23 Steve NaroffTweak --version to include the date and time.
2008-12-09 Nuno Lopesremove unused var
2008-10-14 Dan GohmanFix command-line option printing to print two spaces...
2008-05-30 Matthijs KooijmanGive a proper error message when a command line option...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-04-28 Mikhail GlushenkovAdd support for response files to the CommandLine library.
2008-03-25 Dan GohmanAdd explicit keywords.
2008-03-25 Dan GohmanA quick nm audit turned up several fixed tables and...
2008-02-23 Dan GohmanFix a bug that caused opt and other tools to silently...
2008-02-20 Anton KorobeynikovAdd 'sink' cmdline option. Patch by Mikhail Glushenkov!
2008-02-20 Anton KorobeynikovUnbreak build with gcc 4.3: provide missed includes...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-10-09 Dan GohmanPass argc by value, not by reference, since it isn...
2007-10-08 Dan GohmanMove the space in overview output for commands out...
2007-05-22 Dale JohannesenMake tail merging the default, except on powerPC. ...
2007-04-12 Chris Lattnerimprove the patch for PR1318 to also support grouped...
2007-04-11 Chris LattnerFix PR1318 by reacting appropriately to a mutating...
2007-04-07 Chris LattnerFix a bug in my earlier commit which exposed positional...
2007-04-06 Chris Lattnerrearchitect the registration mechanism used by the...
2007-04-05 Chris Lattnerremove the dead removeArgument method, rename Options...
2007-02-01 Devang PatelAdd PrintVersionMessage() that tools can use to print...
2006-12-07 Bill WendlingDon't use <sstream> in Streams.h but <iosfwd> instead.
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-11-26 Bill WendlingRemoved #include <iostream> and replace with llvm_...
2006-10-13 Chris Lattneravoid a ctor/dtor issue with the ProgramName global.
2006-10-12 Chris Lattnershrink anon-ns and mark stuff static. No functionality...
2006-10-04 Chris LattnerFix more static dtor issues
2006-08-27 Chris LattnerMinor code cleanups
2006-08-27 Chris LattnerAdd external definitions for commonly-used template...
2006-08-23 Reid SpencerMake the ProgramName variable a std::string so we can...
2006-08-21 Reid SpencerFor PR797:
2006-08-02 Jim LaskeyIf the Program name was NULL then all further output...
2006-07-18 Chris LattnerAdd an out-of-line virtual method to provide a home...
2006-07-06 Chris LattnerPrint LLVM version info like this:
2006-06-05 Reid SpencerMake it possible to override the standard version print...
2006-04-28 Chris LattnerFix PR743: emit -help output of a tool to cout, not...
2006-01-17 Chris LattnerAdd support for programs with a null argv[0]
2005-12-26 Duraid MadinaMERRY CHRISTMAS EVERYONE!!! (what better way to spend...
2005-11-16 Chris Lattnerindicate when a tool is a debug build.
2005-08-08 Chris LattnerAllow tools with "consume after" options (like lli...
2005-08-08 Chris LattnerReject command lines that have too many positional...
2005-05-13 Chris LattnerCapitalize
2005-05-10 Chris LattnerDo not use "" as a sentinal for a missing argument...
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-02-14 Chris LattnerWork around GCC PR19958, which causes programs to somet...
2004-11-24 Reid SpencerImplement and document prefix options with arbitrary...
2004-11-20 Tanya LattnerFixed assertion from triggering. We need to check if...
2004-11-19 Chris LattnerPatches to avoid "leaking" memory on process exit....
2004-11-16 Reid SpencerAdd a comment to some code that at first glance just...
2004-11-16 Reid SpencerPer code review:
next