Age | Commit message (Expand) | Author |
2009-08-23 | clean up #includes. | Chris Lattner |
2009-08-23 | Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other ... | Benjamin Kramer |
2009-08-23 | remove some uses of llvm/Support/Streams.h | Chris Lattner |
2009-08-02 | Remove duplicated colons and spaces. | Benjamin Kramer |
2009-07-26 | Sort list of targets in --version. | Daniel Dunbar |
2009-07-16 | Add registered target list to --version output. | Daniel Dunbar |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin |
2009-07-11 | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin |
2009-07-11 | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin |
2009-04-29 | Add support for a character after a command line option. Like '-Os'. | Bill Wendling |
2009-04-08 | Remove AllowInverse: it leaks memory and is not the right | Chris Lattner |
2009-04-01 | * Fixed spelling of `invertible' | Misha Brukman |
2009-03-28 | move a large method out of line. | Chris Lattner |
2009-02-02 | Improve -fno-opt style option processing to not require an extra | Mike Stump |
2009-01-30 | Add opposite_of and inverse_opt to support -fno- style options. This | Mike Stump |
2009-01-28 | Clarify comment. | Mikhail Glushenkov |
2009-01-21 | Mimic gcc behaviour with regard to response files. | Mikhail Glushenkov |
2009-01-16 | Support for multi-valued options in CommandLine | Mikhail Glushenkov |
2008-12-23 | Tweak --version to include the date and time. | Steve Naroff |
2008-12-09 | remove unused var | Nuno Lopes |
2008-10-14 | Fix command-line option printing to print two spaces where needed, | Dan Gohman |
2008-05-30 | Give a proper error message when a command line option is defined more than | Matthijs Kooijman |
2008-05-05 | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng |
2008-04-28 | Add support for response files to the CommandLine library. | Mikhail Glushenkov |
2008-03-25 | Add explicit keywords. | Dan Gohman |
2008-03-25 | A quick nm audit turned up several fixed tables and objects that were | Dan Gohman |
2008-02-23 | Fix a bug that caused opt and other tools to silently ignore | Dan Gohman |
2008-02-20 | Add 'sink' cmdline option. Patch by Mikhail Glushenkov! | Anton Korobeynikov |
2008-02-20 | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner |
2007-10-09 | Pass argc by value, not by reference, since it isn't modified. | Dan Gohman |
2007-10-08 | Move the space in overview output for commands out of each of the | Dan Gohman |
2007-05-22 | Make tail merging the default, except on powerPC. There was no prior art | Dale Johannesen |
2007-04-12 | improve the patch for PR1318 to also support grouped options with custom | Chris Lattner |
2007-04-11 | Fix PR1318 by reacting appropriately to a mutating option list. | Chris Lattner |
2007-04-07 | Fix a bug in my earlier commit which exposed positional options backwards. | Chris Lattner |
2007-04-06 | rearchitect the registration mechanism used by the command line option stuff. | Chris Lattner |
2007-04-05 | remove the dead removeArgument method, rename Options to OptionsMap. | Chris Lattner |
2007-02-01 | Add PrintVersionMessage() that tools can use to print version number | Devang Patel |
2006-12-07 | Don't use <sstream> in Streams.h but <iosfwd> instead. | Bill Wendling |
2006-12-07 | Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are | Bill Wendling |
2006-11-26 | Removed #include <iostream> and replace with llvm_* streams. | Bill Wendling |
2006-10-13 | avoid a ctor/dtor issue with the ProgramName global. | Chris Lattner |
2006-10-12 | shrink anon-ns and mark stuff static. No functionality changes | Chris Lattner |
2006-10-04 | Fix more static dtor issues | Chris Lattner |
2006-08-27 | Minor code cleanups | Chris Lattner |
2006-08-27 | Add external definitions for commonly-used template specializations and add | Chris Lattner |
2006-08-23 | Make the ProgramName variable a std::string so we can eliminate the path | Reid Spencer |
2006-08-21 | For PR797: | Reid Spencer |
2006-08-02 | If the Program name was NULL then all further output sent to std::cerr was | Jim Laskey |