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