1. 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
  2. 16e0209 Fix minor style issues. by Dan Gohman · 15 years ago
  3. 7e7ae5a Refer to -help instead of --help since this is what tools themselves say. by Duncan Sands · 16 years ago
  4. 12ea66a Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 16 years ago
  5. 1fa8b00 Suppress use of uninitialized variable warning. by Duncan Sands · 16 years ago
  6. fcb5b83 Change errs() to dbgs(). by David Greene · 16 years ago
  7. 018402d Print a newline after the Args: line so that unrelated errs() output doesn't by Dan Gohman · 16 years ago
  8. b3587cf Perform explicit instantiations in the proper namespace, since Clang diagnoses this ill-formity. by Douglas Gregor · 16 years ago
  9. 37628e0 Move the handling of CommaSeparated options into ProvideOption. by Mikhail Glushenkov · 16 years ago
  10. eeebecf Trailing whitespace. by Mikhail Glushenkov · 16 years ago
  11. 110e7bb Revert CPU detection code to return "generic" instead of an empty string in case by Benjamin Kramer · 16 years ago
  12. ba43e07 Report the detected host CPU in --version. by Daniel Dunbar · 16 years ago
  13. bf177ee Show command-line args and features passed into backend in debug output. Approved by Evan Cheng. by Sandeep Patel · 16 years ago
  14. 35b3058 Bugfix for the CommaSeparated option. The original code was adding the whole by Nicolas Geoffray · 16 years ago
  15. 63e944b reapply r82348 with a fix, thanks Jeffrey. by Chris Lattner · 16 years ago
  16. 1d75d3a Roll back r82348, which introduced an infinite loop in ParseCStringVector() that by Jeffrey Yasskin · 16 years ago
  17. fd40d03 tidy up by Chris Lattner · 16 years ago
  18. 1908aea smallvectorize getExtraOptionNames by Chris Lattner · 16 years ago
  19. 49b301c minor cleanups. by Chris Lattner · 16 years ago
  20. bc2d9d3 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 16 years ago
  21. 043b8b5 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 16 years ago
  22. 0fd48b1 the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 16 years ago
  23. 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
  24. 081bcb0 Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 16 years ago
  25. b40b7e3 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 16 years ago
  26. 67aead6 switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 16 years ago
  27. 14aae60 change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 16 years ago
  28. b168737 Several changes together in a murky mess: by Chris Lattner · 16 years ago
  29. 256db9b Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 16 years ago
  30. 8a7a058 convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 16 years ago
  31. 4e247ec convert 'Value' to StringRef which makes it easier to by Chris Lattner · 16 years ago
  32. 341620b Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 16 years ago
  33. b7b71a3 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 16 years ago
  34. fb2674d coding style cleanup by Chris Lattner · 16 years ago
  35. 99c5c7b convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 16 years ago
  36. ba11229 avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 16 years ago
  37. 970e7df Avoid some temporary strings. by Chris Lattner · 16 years ago
  38. a460beb convert a bunch of std::strings to use StringRef. This should eliminate by Chris Lattner · 16 years ago
  39. 461c876 Try to speed up the slowest parts of the CommandLine library by Benjamin Kramer · 16 years ago
  40. 6552478 Show derived host triple in --version. by Daniel Dunbar · 16 years ago
  41. ca17934 clean up #includes. by Chris Lattner · 16 years ago
  42. d227a3f Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other minor tweaks. by Benjamin Kramer · 16 years ago
  43. d9ea85a remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  44. e6864c1 Remove duplicated colons and spaces. by Benjamin Kramer · 16 years ago
  45. 77454a2 Sort list of targets in --version. by Daniel Dunbar · 16 years ago
  46. 603bea3 Add registered target list to --version output. by Daniel Dunbar · 16 years ago
  47. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  48. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  49. 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  50. b587f96 Add support for a character after a command line option. Like '-Os'. by Bill Wendling · 16 years ago
  51. 00a7b52 Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 16 years ago
  52. d485e88 * Fixed spelling of `invertible' * Simplified if statement by Misha Brukman · 16 years ago
  53. e8b6410 move a large method out of line. by Chris Lattner · 16 years ago
  54. d64e0eb Improve -fno-opt style option processing to not require an extra by Mike Stump · 17 years ago
  55. d6f175b Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 17 years ago
  56. 6c55b1c Clarify comment. by Mikhail Glushenkov · 17 years ago
  57. 1421b7b Mimic gcc behaviour with regard to response files. by Mikhail Glushenkov · 17 years ago
  58. 7059d47 Support for multi-valued options in CommandLine by Mikhail Glushenkov · 17 years ago
  59. 1f33f8e Tweak --version to include the date and time. by Steve Naroff · 17 years ago
  60. 34283c8 remove unused var by Nuno Lopes · 17 years ago
  61. b8cab92 Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
  62. 33540ad Give a proper error message when a command line option is defined more than by Matthijs Kooijman · 17 years ago
  63. 34cd4a4 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 17 years ago
  64. beb4d82 Add support for response files to the CommandLine library. by Mikhail Glushenkov · 17 years ago
  65. 950a4c4 Add explicit keywords. by Dan Gohman · 17 years ago
  66. cfbb2f0 A quick nm audit turned up several fixed tables and objects that were by Dan Gohman · 17 years ago
  67. 61e015f Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 17 years ago
  68. d57160d Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 18 years ago
  69. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  70. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  71. 9a52632 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
  72. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  73. 81da02b Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 18 years ago
  74. 69d6f13 improve the patch for PR1318 to also support grouped options with custom by Chris Lattner · 18 years ago
  75. 159b0a43 Fix PR1318 by reacting appropriately to a mutating option list. by Chris Lattner · 18 years ago
  76. ee2b320 Fix a bug in my earlier commit which exposed positional options backwards. by Chris Lattner · 18 years ago
  77. 9878d6a rearchitect the registration mechanism used by the command line option stuff. by Chris Lattner · 18 years ago
  78. af035f3 remove the dead removeArgument method, rename Options to OptionsMap. by Chris Lattner · 18 years ago
  79. aed293d Add PrintVersionMessage() that tools can use to print version number by Devang Patel · 19 years ago
  80. 1a097e3 Don't use <sstream> in Streams.h but <iosfwd> instead. by Bill Wendling · 19 years ago
  81. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  82. fe6b146 Removed #include <iostream> and replace with llvm_* streams. by Bill Wendling · 19 years ago
  83. efa3da5 avoid a ctor/dtor issue with the ProgramName global. by Chris Lattner · 19 years ago
  84. 500d8bf shrink anon-ns and mark stuff static. No functionality changes by Chris Lattner · 19 years ago
  85. 90aa839 Fix more static dtor issues by Chris Lattner · 19 years ago
  86. 2328858 Minor code cleanups by Chris Lattner · 19 years ago
  87. 7422a76 Add external definitions for commonly-used template specializations and add by Chris Lattner · 19 years ago
  88. 6f4c607 Make the ProgramName variable a std::string so we can eliminate the path by Reid Spencer · 19 years ago
  89. 023fcf9 For PR797: by Reid Spencer · 19 years ago
  90. abe0e3e If the Program name was NULL then all further output sent to std::cerr was by Jim Laskey · 19 years ago
  91. 433fd76 Add an out-of-line virtual method to provide a home for the cl::option class. by Chris Lattner · 19 years ago
  92. 3fc2f4e Print LLVM version info like this: by Chris Lattner · 19 years ago
  93. 515b5b3 Make it possible to override the standard version printer. Not all tools by Reid Spencer · 19 years ago
  94. a0de843 Fix PR743: emit -help output of a tool to cout, not cerr. by Chris Lattner · 19 years ago
  95. 79959d2 Add support for programs with a null argv[0] by Chris Lattner · 20 years ago
  96. 786e3e2 MERRY CHRISTMAS EVERYONE!!! (what better way to spend christmas than by Duraid Madina · 20 years ago
  97. d5bd52c indicate when a tool is a debug build. by Chris Lattner · 20 years ago
  98. 21e1a79 Allow tools with "consume after" options (like lli) to take more positional by Chris Lattner · 20 years ago
  99. de01324 Reject command lines that have too many positional arguments passed (e.g., by Chris Lattner · 20 years ago
  100. 4bf7afc Capitalize by Chris Lattner · 20 years ago