Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.87 -> 1.88
---
Log message:
Make tail merging the default, except on powerPC. There was no prior art
for a target-dependent default with a command-line override; this way
should be generally usable.
---
Diffs of the changes:
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.86 -> 1.87
---
Log message:
improve the patch for PR1318: http://llvm.org/PR1318 to also support grouped
options with custom
handlers (like the pass list). My previous fix only supported *new* command
line options, not additio
On Apr 11, 2007, at 1:00 PM, Reid Spencer wrote:
> On Wed, 2007-04-11 at 10:35 -0500, Chris Lattner wrote:
>>
>> Changes in directory llvm/lib/Support:
>>
>> CommandLine.cpp updated: 1.85 -> 1.86
>> ---
>> Log message:
>>
>> Fix PR1318: http://llvm.org/PR1318 by reacting appropriately to a
>>
On Wed, 2007-04-11 at 10:35 -0500, Chris Lattner wrote:
>
> Changes in directory llvm/lib/Support:
>
> CommandLine.cpp updated: 1.85 -> 1.86
> ---
> Log message:
>
> Fix PR1318: http://llvm.org/PR1318 by reacting appropriately to a mutating
> option list.
Could you please create a regression
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.85 -> 1.86
---
Log message:
Fix PR1318: http://llvm.org/PR1318 by reacting appropriately to a mutating
option list.
---
Diffs of the changes: (+14 -0)
CommandLine.cpp | 14 ++
1 files changed, 14 insertions(+
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.84 -> 1.85
---
Log message:
Fix a bug in my earlier commit which exposed positional options backwards.
This fixes llvm-ar.
---
Diffs of the changes: (+9 -3)
CommandLine.cpp | 12 +---
1 files changed, 9 insertions
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.83 -> 1.84
---
Log message:
rearchitect the registration mechanism used by the command line option stuff.
This dramatically reduce the amount of memory allocated by the commandline stuff
at static init time, changing it to build
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.82 -> 1.83
---
Log message:
remove the dead removeArgument method, rename Options to OptionsMap.
---
Diffs of the changes: (+30 -61)
CommandLine.cpp | 91 ++--
1 files ch
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.81 -> 1.82
---
Log message:
Add PrintVersionMessage() that tools can use to print version number
without exiting program.
---
Diffs of the changes: (+11 -3)
CommandLine.cpp | 14 +++---
1 files changed, 11 insertio
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.77 -> 1.78
---
Log message:
avoid a ctor/dtor issue with the ProgramName global.
---
Diffs of the changes: (+9 -3)
CommandLine.cpp | 12 +---
1 files changed, 9 insertions(+), 3 deletions(-)
Index: llvm/lib/Suppo
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.76 -> 1.77
---
Log message:
shrink anon-ns and mark stuff static. No functionality changes
---
Diffs of the changes: (+11 -10)
CommandLine.cpp | 21 +++--
1 files changed, 11 insertions(+), 10 deletions(-)
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.75 -> 1.76
Timer.cpp updated: 1.45 -> 1.46
---
Log message:
Fix more static dtor issues
---
Diffs of the changes: (+62 -73)
CommandLine.cpp | 104
Timer.cpp |
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.74 -> 1.75
---
Log message:
Minor code cleanups
---
Diffs of the changes: (+10 -11)
CommandLine.cpp | 21 ++---
1 files changed, 10 insertions(+), 11 deletions(-)
Index: llvm/lib/Support/CommandLine.cpp
d
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.73 -> 1.74
---
Log message:
Add external definitions for commonly-used template specializations and add
anchor methods to others. This eliminates the vtable/template method bloat
in .o files that defining a cl::opt used to impos
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.72 -> 1.73
---
Log message:
Make the ProgramName variable a std::string so we can eliminate the path
portion fo the program name via sys::Path().getLast(). This makes error
messages more readable since this is invariably used onl
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.71 -> 1.72
GraphWriter.cpp updated: 1.2 -> 1.3
---
Log message:
For PR797: http://llvm.org/PR797 :
Make sys::Program::ExecuteAndWait not throw exceptions and update any
affected code. It now return - to signal that the progr
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.70 -> 1.71
---
Log message:
If the Program name was NULL then all further output sent to std::cerr was
suppressed.
---
Diffs of the changes: (+3 -1)
CommandLine.cpp |4 +++-
1 files changed, 3 insertions(+), 1 deletion(-
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.69 -> 1.70
---
Log message:
Add an out-of-line virtual method to provide a home for the cl::option class.
---
Diffs of the changes: (+4 -0)
CommandLine.cpp |4
1 files changed, 4 insertions(+)
Index: llvm/lib/Supp
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.68 -> 1.69
---
Log message:
Print LLVM version info like this:
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 (s
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.67 -> 1.68
---
Log message:
Make it possible to override the standard version printer. Not all tools
built with CommandLine.h will want the --version option to report that the
tool belongs to LLVM. To override simply pass a void
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.66 -> 1.67
---
Log message:
Fix PR743: http://llvm.cs.uiuc.edu/PR743 : emit -help output of a tool to cout,
not cerr.
---
Diffs of the changes: (+20 -20)
CommandLine.cpp | 40
1 fi
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.65 -> 1.66
ToolRunner.cpp updated: 1.46 -> 1.47
---
Log message:
Add support for programs with a null argv[0]
---
Diffs of the changes: (+32 -10)
CommandLine.cpp | 34 --
ToolRunner.cpp |
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.64 -> 1.65
---
Log message:
MERRY CHRISTMAS EVERYONE!!! (what better way to spend christmas than
to try building LLVM on HP-UX! (the Right Way seems to be to tear out
the ancient STL that HP ship and use http://incubator.apache.o
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.63 -> 1.64
---
Log message:
indicate when a tool is a debug build.
---
Diffs of the changes: (+6 -1)
CommandLine.cpp |7 ++-
1 files changed, 6 insertions(+), 1 deletion(-)
Index: llvm/lib/Support/CommandLine.cpp
d
24 matches
Mail list logo