- Mar 28, 2009
-
-
Chris Lattner authored
llvm-svn: 67892
-
- Feb 02, 2009
-
-
Mike Stump authored
option to make the -fno- form on the option. We also document the new form in the CommandLine documentation. llvm-svn: 63559
-
- Jan 30, 2009
-
-
Mike Stump authored
is necessary for eventual gcc commmand line compatibility. llvm-svn: 63384
-
- Jan 28, 2009
-
-
Mikhail Glushenkov authored
llvm-svn: 63171
-
- Jan 21, 2009
-
-
Mikhail Glushenkov authored
llvm-svn: 62688
-
- Jan 16, 2009
-
-
Mikhail Glushenkov authored
Makes possible to specify options that take multiple arguments (a-la -sectalign on Darwin). See documentation for details. llvm-svn: 62372
-
- Dec 23, 2008
-
-
Steve Naroff authored
llvm-svn: 61378
-
- Dec 09, 2008
-
-
Nuno Lopes authored
llvm-svn: 60770
-
- Oct 14, 2008
-
-
Dan Gohman authored
instead of requiring all "short description" strings to begin with two spaces. This makes these strings less mysterious, and it fixes some cases where short description strings mistakenly did not begin with two spaces. llvm-svn: 57521
-
- May 30, 2008
-
-
Matthijs Kooijman authored
once (ie, at two different places in the source, not two times on the commandline). llvm-svn: 51771
-
- May 05, 2008
-
-
Evan Cheng authored
llvm-svn: 50659
-
- Apr 28, 2008
-
-
Mikhail Glushenkov authored
llvm-svn: 50355
-
- Mar 25, 2008
-
-
Dan Gohman authored
llvm-svn: 48801
-
Dan Gohman authored
marked read-write. Use const so that they can be allocated in a read-only segment. llvm-svn: 48800
-
- Feb 23, 2008
-
-
Dan Gohman authored
invalid command-line options. llvm-svn: 47523
-
- Feb 20, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 47377
-
Anton Korobeynikov authored
llvm-svn: 47367
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45418
-
- Oct 09, 2007
-
-
Dan Gohman authored
llvm-svn: 42788
-
- Oct 08, 2007
-
-
Dan Gohman authored
commands and into the common code. llvm-svn: 42752
-
- May 22, 2007
-
-
Dale Johannesen authored
for a target-dependent default with a command-line override; this way should be generally usable. llvm-svn: 37285
-
- Apr 12, 2007
-
-
Chris Lattner authored
handlers (like the pass list). My previous fix only supported *new* command line options, not additions to old ones. This fixes test/Feature/load_module.ll llvm-svn: 35935
-
- Apr 11, 2007
-
-
Chris Lattner authored
llvm-svn: 35905
-
- Apr 07, 2007
-
-
Chris Lattner authored
This fixes llvm-ar. llvm-svn: 35727
-
- Apr 06, 2007
-
-
Chris Lattner authored
This dramatically reduce the amount of memory allocated by the commandline stuff at static init time, changing it to build local data structures when ParseCommandLineOptions is called. In a dummy empty program that links some llvm libraries, this reduces the number of malloc'd bytes from 4864 to 3360 on entry to main. Most of that memory is now allocated by non-commandline related stuff. llvm-svn: 35701
-
- Apr 05, 2007
-
-
Chris Lattner authored
llvm-svn: 35690
-
- Feb 01, 2007
-
-
Devang Patel authored
without exiting program. llvm-svn: 33737
-
- Dec 08, 2006
-
-
Bill Wendling authored
llvm-svn: 32340
-
- Dec 07, 2006
-
-
Bill Wendling authored
now cerr, cout, and NullStream resp. llvm-svn: 32298
-
- Nov 26, 2006
-
-
Bill Wendling authored
llvm-svn: 31927
-
- Oct 13, 2006
-
-
Chris Lattner authored
llvm-svn: 30925
-
Chris Lattner authored
llvm-svn: 30922
-
- Oct 04, 2006
-
-
Chris Lattner authored
llvm-svn: 30725
-
- Aug 28, 2006
-
-
Chris Lattner authored
llvm-svn: 29917
-
- Aug 27, 2006
-
-
Chris Lattner authored
anchor methods to others. This eliminates the vtable/template method bloat in .o files that defining a cl::opt used to impose (~4K per .o file for one cp::opt<unsigned>). llvm-svn: 29909
-
- Aug 23, 2006
-
-
Reid Spencer authored
portion fo the program name via sys::Path().getLast(). This makes error messages more readable since this is invariably used only in error messages. Instead of: /path/to/llvm/bin/directory/toolname: error message we will now get: toolname: error message Also, since we always have a program name (even if its defaulted), don't check to see if it is set or not when generating error messages. This eliminates a bunch of constant strings, saving a little under 1K of data. llvm-svn: 29842
-
- Aug 21, 2006
-
-
Reid Spencer authored
Make sys::Program::ExecuteAndWait not throw exceptions and update any affected code. It now return -9999 to signal that the program couldn't be executed. Only one case (in bugpoint) actually examines the result code. llvm-svn: 29785
-
- Aug 02, 2006
-
-
Jim Laskey authored
suppressed. llvm-svn: 29477
-
- Jul 19, 2006
-
-
Chris Lattner authored
llvm-svn: 29191
-
- Jul 06, 2006
-
-
Chris Lattner authored
Low Level Virtual Machine (http://llvm.org/): llvm version 1.8cvs DEBUG build with assertions. instead of like this: Low Level Virtual Machine (llvm) 1.8cvs (see http://llvm.org/) ASSERTIONS ENABLED Also, add a place for vendor version info. llvm-svn: 29020
-