- 2127c9b Remove tabs. by Bill Wendling · 13 years ago
- e840fef Don't cast away constant qualifier. by Duncan Sands · 13 years ago
- ebba055 Correct use of const in ParseCommandLineOptions by David Blaikie · 14 years ago
- c48d4dc Tidy up. s/Low Level Virtual Machine/LLVM/. by Jim Grosbach · 14 years ago
- d0278d5 Remove dead default. by David Blaikie · 14 years ago
- 2dd674f Removing unused default switch cases in switches over enums that already account for all enumeration values explicitly. by David Blaikie · 14 years ago
- 6e9b5eb revert r147542 after comments from Joerg Sonnenberger by Sebastian Pop · 14 years ago
- 8a86887 use getHostTriple instead of getDefaultTargetTriple in getClosestTargetForJIT by Sebastian Pop · 14 years ago
- 0becc96 Add some missing anchors. by David Blaikie · 14 years ago
- 0173864 rename getHostTriple into getDefaultTargetTriple by Sebastian Pop · 14 years ago
- b351456 CommandLine: Add support for 64 bit unsigned integer options. by Benjamin Kramer · 14 years ago
- 4039313 Move the registered target printing in version strings completely out of by Chandler Carruth · 14 years ago
- 077c408 Move the logic for printing the registered targets into a static by Chandler Carruth · 14 years ago
- 6d51d26 Add an extension point to the CommandLine library where clients can by Chandler Carruth · 14 years ago
- ff276b4 Aliased flag options should be directed to stdout, not stderr to be consistent. Patch by Julien Lerouge. by Evan Cheng · 14 years ago
- 95d206a In option typo correction, consider -foo=VALUE flags as two distinct parts. The by Nick Lewycky · 14 years ago
- 090771f Fix a few instances of "warning: extra ';' outside of a function [-pedantic]". by Frits van Bommel · 14 years ago
- ce96902 Added *hidden* flags -print-options and -print-all-options so by Andrew Trick · 14 years ago
- c98d82a Support/CommandLine: Fix LookupNearestOption to also search extra option names. by Daniel Dunbar · 15 years ago
- f4fb66a Support/CommandLine: Add "Did you mean" print for mismatched operands. by Daniel Dunbar · 15 years ago
- b3127bb Support/PathV1: Deprecate getLast. by Michael J. Spencer · 15 years ago
- 3ff9563 MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> via an out parm. by Michael J. Spencer · 15 years ago
- 333fb04 Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code &ec. And fix clients. by Michael J. Spencer · 15 years ago
- 1f6efa3 Merge System into Support. by Michael J. Spencer · 15 years ago
- a962b40 Fix a use after free. Patch by Frits van Bommel. by Rafael Espindola · 15 years ago
- dd464df Add new configure option, --disable-timestamps, intended to turn off anything which would mess up binary/object comparisons. Currently: by Daniel Dunbar · 15 years ago
- 16e0209 Fix minor style issues. by Dan Gohman · 15 years ago
- 7e7ae5a Refer to -help instead of --help since this is what tools themselves say. by Duncan Sands · 15 years ago
- 12ea66a Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 16 years ago
- 1fa8b00 Suppress use of uninitialized variable warning. by Duncan Sands · 16 years ago
- fcb5b83 Change errs() to dbgs(). by David Greene · 16 years ago
- 018402d Print a newline after the Args: line so that unrelated errs() output doesn't by Dan Gohman · 16 years ago
- b3587cf Perform explicit instantiations in the proper namespace, since Clang diagnoses this ill-formity. by Douglas Gregor · 16 years ago
- 37628e0 Move the handling of CommaSeparated options into ProvideOption. by Mikhail Glushenkov · 16 years ago
- eeebecf Trailing whitespace. by Mikhail Glushenkov · 16 years ago
- 110e7bb Revert CPU detection code to return "generic" instead of an empty string in case by Benjamin Kramer · 16 years ago
- ba43e07 Report the detected host CPU in --version. by Daniel Dunbar · 16 years ago
- bf177ee Show command-line args and features passed into backend in debug output. Approved by Evan Cheng. by Sandeep Patel · 16 years ago
- 35b3058 Bugfix for the CommaSeparated option. The original code was adding the whole by Nicolas Geoffray · 16 years ago
- 63e944b reapply r82348 with a fix, thanks Jeffrey. by Chris Lattner · 16 years ago
- 1d75d3a Roll back r82348, which introduced an infinite loop in ParseCStringVector() that by Jeffrey Yasskin · 16 years ago
- fd40d03 tidy up by Chris Lattner · 16 years ago
- 1908aea smallvectorize getExtraOptionNames by Chris Lattner · 16 years ago
- 49b301c minor cleanups. by Chris Lattner · 16 years ago
- bc2d9d3 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 16 years ago
- 043b8b5 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 16 years ago
- 0fd48b1 the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 16 years ago
- d0062c6 eliminate the duplicate detection loop, moving it into the loop that populates the Opts vector in the first place. by Chris Lattner · 16 years ago
- 081bcb0 Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 16 years ago
- b40b7e3 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 16 years ago
- 67aead6 switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 16 years ago
- 14aae60 change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 16 years ago
- b168737 Several changes together in a murky mess: by Chris Lattner · 16 years ago
- 256db9b Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 16 years ago
- 8a7a058 convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 16 years ago
- 4e247ec convert 'Value' to StringRef which makes it easier to by Chris Lattner · 16 years ago
- 341620b Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 16 years ago
- b7b71a3 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 16 years ago
- fb2674d coding style cleanup by Chris Lattner · 16 years ago
- 99c5c7b convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 16 years ago
- ba11229 avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 16 years ago
- 970e7df Avoid some temporary strings. by Chris Lattner · 16 years ago
- a460beb convert a bunch of std::strings to use StringRef. This should eliminate by Chris Lattner · 16 years ago
- 461c876 Try to speed up the slowest parts of the CommandLine library by Benjamin Kramer · 16 years ago
- 6552478 Show derived host triple in --version. by Daniel Dunbar · 16 years ago
- ca17934 clean up #includes. by Chris Lattner · 16 years ago
- d227a3f Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other minor tweaks. by Benjamin Kramer · 16 years ago
- d9ea85a remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
- e6864c1 Remove duplicated colons and spaces. by Benjamin Kramer · 16 years ago
- 77454a2 Sort list of targets in --version. by Daniel Dunbar · 16 years ago
- 603bea3 Add registered target list to --version output. by Daniel Dunbar · 16 years ago
- c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
- c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
- 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
- b587f96 Add support for a character after a command line option. Like '-Os'. by Bill Wendling · 16 years ago
- 00a7b52 Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 16 years ago
- d485e88 * Fixed spelling of `invertible' * Simplified if statement by Misha Brukman · 16 years ago
- e8b6410 move a large method out of line. by Chris Lattner · 16 years ago
- d64e0eb Improve -fno-opt style option processing to not require an extra by Mike Stump · 17 years ago
- d6f175b Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 17 years ago
- 6c55b1c Clarify comment. by Mikhail Glushenkov · 17 years ago
- 1421b7b Mimic gcc behaviour with regard to response files. by Mikhail Glushenkov · 17 years ago
- 7059d47 Support for multi-valued options in CommandLine by Mikhail Glushenkov · 17 years ago
- 1f33f8e Tweak --version to include the date and time. by Steve Naroff · 17 years ago
- 34283c8 remove unused var by Nuno Lopes · 17 years ago
- b8cab92 Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
- 33540ad Give a proper error message when a command line option is defined more than by Matthijs Kooijman · 17 years ago
- 34cd4a4 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 17 years ago
- beb4d82 Add support for response files to the CommandLine library. by Mikhail Glushenkov · 17 years ago
- 950a4c4 Add explicit keywords. by Dan Gohman · 17 years ago
- cfbb2f0 A quick nm audit turned up several fixed tables and objects that were by Dan Gohman · 17 years ago
- 61e015f Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 17 years ago
- d57160d Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 17 years ago
- ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
- 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- 9a52632 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
- 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
- 81da02b Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 18 years ago
- 69d6f13 improve the patch for PR1318 to also support grouped options with custom by Chris Lattner · 18 years ago
- 159b0a43 Fix PR1318 by reacting appropriately to a mutating option list. by Chris Lattner · 18 years ago