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