1. 0210e97 Correct use of const in ParseCommandLineOptions by David Blaikie · 14 years ago
  2. 65e2465 Tidy up. s/Low Level Virtual Machine/LLVM/. by Jim Grosbach · 14 years ago
  3. d3303de Remove dead default. by David Blaikie · 14 years ago
  4. 486df73 Removing unused default switch cases in switches over enums that already account for all enumeration values explicitly. by David Blaikie · 14 years ago
  5. 99ab273 revert r147542 after comments from Joerg Sonnenberger by Sebastian Pop · 14 years ago
  6. 0f357d6 use getHostTriple instead of getDefaultTargetTriple in getClosestTargetForJIT by Sebastian Pop · 14 years ago
  7. 3a15e14 Add some missing anchors. by David Blaikie · 14 years ago
  8. 94441fb rename getHostTriple into getDefaultTargetTriple by Sebastian Pop · 14 years ago
  9. 49fc9dd CommandLine: Add support for 64 bit unsigned integer options. by Benjamin Kramer · 14 years ago
  10. 2d71c42 Move the registered target printing in version strings completely out of by Chandler Carruth · 14 years ago
  11. 2baac02 Move the logic for printing the registered targets into a static by Chandler Carruth · 14 years ago
  12. ea7e552 Add an extension point to the CommandLine library where clients can by Chandler Carruth · 14 years ago
  13. 871b712 Aliased flag options should be directed to stdout, not stderr to be consistent. Patch by Julien Lerouge. by Evan Cheng · 14 years ago
  14. e75ffa1 In option typo correction, consider -foo=VALUE flags as two distinct parts. The by Nick Lewycky · 14 years ago
  15. 87e3367 Fix a few instances of "warning: extra ';' outside of a function [-pedantic]". by Frits van Bommel · 15 years ago
  16. 1200401 Added *hidden* flags -print-options and -print-all-options so by Andrew Trick · 15 years ago
  17. 72d523b Support/CommandLine: Fix LookupNearestOption to also search extra option names. by Daniel Dunbar · 15 years ago
  18. f413213 Support/CommandLine: Add "Did you mean" print for mismatched operands. by Daniel Dunbar · 15 years ago
  19. 762a55b Support/PathV1: Deprecate getLast. by Michael J. Spencer · 15 years ago
  20. 39a0ffc MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> via an out parm. by Michael J. Spencer · 15 years ago
  21. 7b6fef8 Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code &ec. And fix clients. by Michael J. Spencer · 15 years ago
  22. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  23. cf14a38 Fix a use after free. Patch by Frits van Bommel. by Rafael Espindola · 15 years ago
  24. dac1824 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
  25. b452d4e Fix minor style issues. by Dan Gohman · 16 years ago
  26. 142b9ed Refer to -help instead of --help since this is what tools themselves say. by Duncan Sands · 16 years ago
  27. 29063ea Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 16 years ago
  28. a230552 Suppress use of uninitialized variable warning. by Duncan Sands · 16 years ago
  29. 9d24d0c Change errs() to dbgs(). by David Greene · 16 years ago
  30. 083f229 Print a newline after the Args: line so that unrelated errs() output doesn't by Dan Gohman · 16 years ago
  31. 7baad73 Perform explicit instantiations in the proper namespace, since Clang diagnoses this ill-formity. by Douglas Gregor · 16 years ago
  32. 5551c20 Move the handling of CommaSeparated options into ProvideOption. by Mikhail Glushenkov · 16 years ago
  33. 1d9f1fe Trailing whitespace. by Mikhail Glushenkov · 16 years ago
  34. 713fd35 Revert CPU detection code to return "generic" instead of an empty string in case by Benjamin Kramer · 16 years ago
  35. d90a9a0 Report the detected host CPU in --version. by Daniel Dunbar · 16 years ago
  36. 598825e Show command-line args and features passed into backend in debug output. Approved by Evan Cheng. by Sandeep Patel · 16 years ago
  37. 08506ee Bugfix for the CommaSeparated option. The original code was adding the whole by Nicolas Geoffray · 16 years ago
  38. 4e37f87 reapply r82348 with a fix, thanks Jeffrey. by Chris Lattner · 16 years ago
  39. a75d6bf Roll back r82348, which introduced an infinite loop in ParseCStringVector() that by Jeffrey Yasskin · 16 years ago
  40. 78f908c tidy up by Chris Lattner · 16 years ago
  41. 56efff07f smallvectorize getExtraOptionNames by Chris Lattner · 16 years ago
  42. 131dca9 minor cleanups. by Chris Lattner · 16 years ago
  43. 00f5380 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 16 years ago
  44. b1f2e10 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 16 years ago
  45. 6ec8caf the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 16 years ago
  46. 8d0309d 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
  47. 64dbb5c Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 16 years ago
  48. 28610b9 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 16 years ago
  49. 41f8b0b switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 16 years ago
  50. f74e28a change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 16 years ago
  51. e7c1e21 Several changes together in a murky mess: by Chris Lattner · 16 years ago
  52. ecbb126 Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 16 years ago
  53. 5a3fa4e convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 16 years ago
  54. 0a40a97 convert 'Value' to StringRef which makes it easier to by Chris Lattner · 16 years ago
  55. 40fef80 Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 16 years ago
  56. 77c2724 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 16 years ago
  57. 1b88fbd coding style cleanup by Chris Lattner · 16 years ago
  58. 3b8adaf convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 16 years ago
  59. ca2552d avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 16 years ago
  60. fa9c6f4 Avoid some temporary strings. by Chris Lattner · 16 years ago
  61. aecd74d convert a bunch of std::strings to use StringRef. This should eliminate by Chris Lattner · 16 years ago
  62. 543d9b2 Try to speed up the slowest parts of the CommandLine library by Benjamin Kramer · 16 years ago
  63. fc39586 Show derived host triple in --version. by Daniel Dunbar · 16 years ago
  64. 36b3caf clean up #includes. by Chris Lattner · 16 years ago
  65. c9aa480 Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other minor tweaks. by Benjamin Kramer · 16 years ago
  66. 471ba48 remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  67. 666cf9d Remove duplicated colons and spaces. by Benjamin Kramer · 16 years ago
  68. a0ad190 Sort list of targets in --version. by Daniel Dunbar · 16 years ago
  69. 78c8fb1 Add registered target list to --version output. by Daniel Dunbar · 16 years ago
  70. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  71. 56d0659 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  72. ccb29cd Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  73. db59fda Add support for a character after a command line option. Like '-Os'. by Bill Wendling · 16 years ago
  74. 3875195 Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 17 years ago
  75. 5fc1a03 * Fixed spelling of `invertible' * Simplified if statement by Misha Brukman · 17 years ago
  76. 7516668 move a large method out of line. by Chris Lattner · 17 years ago
  77. b92f839 Improve -fno-opt style option processing to not require an extra by Mike Stump · 17 years ago
  78. ecbe4a0 Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 17 years ago
  79. 57cf396 Clarify comment. by Mikhail Glushenkov · 17 years ago
  80. 6a4f729 Mimic gcc behaviour with regard to response files. by Mikhail Glushenkov · 17 years ago
  81. cbc26fd Support for multi-valued options in CommandLine by Mikhail Glushenkov · 17 years ago
  82. b0ad08b Tweak --version to include the date and time. by Steve Naroff · 17 years ago
  83. 10ab44a remove unused var by Nuno Lopes · 17 years ago
  84. 9c4b7d5 Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
  85. c9c6715 Give a proper error message when a command line option is defined more than by Matthijs Kooijman · 17 years ago
  86. 86cb318 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 17 years ago
  87. 5653d3b Add support for response files to the CommandLine library. by Mikhail Glushenkov · 17 years ago
  88. c60c67f Add explicit keywords. by Dan Gohman · 18 years ago
  89. bdc24ad A quick nm audit turned up several fixed tables and objects that were by Dan Gohman · 18 years ago
  90. 63d2d1f Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 18 years ago
  91. f275a49 Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 18 years ago
  92. 579f071 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  93. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  94. 6696640 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
  95. 2c6a821 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  96. 82810c8 Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 18 years ago
  97. af039c5 improve the patch for PR1318 to also support grouped options with custom by Chris Lattner · 19 years ago
  98. 83b53a5 Fix PR1318 by reacting appropriately to a mutating option list. by Chris Lattner · 19 years ago
  99. 0e1c1d4 Fix a bug in my earlier commit which exposed positional options backwards. by Chris Lattner · 19 years ago
  100. 5247f60 rearchitect the registration mechanism used by the command line option stuff. by Chris Lattner · 19 years ago