1. 3875195 Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 17 years ago
  2. 5fc1a03 * Fixed spelling of `invertible' * Simplified if statement by Misha Brukman · 17 years ago
  3. 7516668 move a large method out of line. by Chris Lattner · 17 years ago
  4. b92f839 Improve -fno-opt style option processing to not require an extra by Mike Stump · 17 years ago
  5. ecbe4a0 Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 17 years ago
  6. 57cf396 Clarify comment. by Mikhail Glushenkov · 17 years ago
  7. 6a4f729 Mimic gcc behaviour with regard to response files. by Mikhail Glushenkov · 17 years ago
  8. cbc26fd Support for multi-valued options in CommandLine by Mikhail Glushenkov · 17 years ago
  9. b0ad08b Tweak --version to include the date and time. by Steve Naroff · 17 years ago
  10. 10ab44a remove unused var by Nuno Lopes · 17 years ago
  11. 9c4b7d5 Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
  12. c9c6715 Give a proper error message when a command line option is defined more than by Matthijs Kooijman · 17 years ago
  13. 86cb318 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 18 years ago
  14. 5653d3b Add support for response files to the CommandLine library. by Mikhail Glushenkov · 18 years ago
  15. c60c67f Add explicit keywords. by Dan Gohman · 18 years ago
  16. bdc24ad A quick nm audit turned up several fixed tables and objects that were by Dan Gohman · 18 years ago
  17. 63d2d1f Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 18 years ago
  18. f275a49 Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 18 years ago
  19. 579f071 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  20. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  21. 6696640 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
  22. 2c6a821 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  23. 82810c8 Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 18 years ago
  24. af039c5 improve the patch for PR1318 to also support grouped options with custom by Chris Lattner · 19 years ago
  25. 83b53a5 Fix PR1318 by reacting appropriately to a mutating option list. by Chris Lattner · 19 years ago
  26. 0e1c1d4 Fix a bug in my earlier commit which exposed positional options backwards. by Chris Lattner · 19 years ago
  27. 5247f60 rearchitect the registration mechanism used by the command line option stuff. by Chris Lattner · 19 years ago
  28. 2031b02 remove the dead removeArgument method, rename Options to OptionsMap. by Chris Lattner · 19 years ago
  29. 9eb2caae Add PrintVersionMessage() that tools can use to print version number by Devang Patel · 19 years ago
  30. 30c0f33 Don't use <sstream> in Streams.h but <iosfwd> instead. by Bill Wendling · 19 years ago
  31. f3baad3 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  32. 3750ae2 Removed #include <iostream> and replace with llvm_* streams. by Bill Wendling · 19 years ago
  33. 5af1cbc avoid a ctor/dtor issue with the ProgramName global. by Chris Lattner · 19 years ago
  34. adb19d6 shrink anon-ns and mark stuff static. No functionality changes by Chris Lattner · 19 years ago
  35. 8111c59 Fix more static dtor issues by Chris Lattner · 19 years ago
  36. 2de6e33 Minor code cleanups by Chris Lattner · 19 years ago
  37. 3e5d60f Add external definitions for commonly-used template specializations and add by Chris Lattner · 19 years ago
  38. bd156a9 Make the ProgramName variable a std::string so we can eliminate the path by Reid Spencer · 19 years ago
  39. c295914 For PR797: by Reid Spencer · 19 years ago
  40. 82cd9c5 If the Program name was NULL then all further output sent to std::cerr was by Jim Laskey · 19 years ago
  41. a0ddced Add an out-of-line virtual method to provide a home for the cl::option class. by Chris Lattner · 19 years ago
  42. 8ac22e7 Print LLVM version info like this: by Chris Lattner · 19 years ago
  43. b317167 Make it possible to override the standard version printer. Not all tools by Reid Spencer · 19 years ago
  44. 1b7a515 Fix PR743: emit -help output of a tool to cout, not cerr. by Chris Lattner · 20 years ago
  45. f64762c Add support for programs with a null argv[0] by Chris Lattner · 20 years ago
  46. 36501f5 MERRY CHRISTMAS EVERYONE!!! (what better way to spend christmas than by Duraid Madina · 20 years ago
  47. fdc8b19 indicate when a tool is a debug build. by Chris Lattner · 20 years ago
  48. d09a9a7 Allow tools with "consume after" options (like lli) to take more positional by Chris Lattner · 20 years ago
  49. d380d84 Reject command lines that have too many positional arguments passed (e.g., by Chris Lattner · 20 years ago
  50. 88bb445 Capitalize by Chris Lattner · 20 years ago
  51. c18e92f Do not use "" as a sentinal for a missing argument! This fixes PR560. by Chris Lattner · 20 years ago
  52. 10468d8 Remove trailing whitespace by Misha Brukman · 21 years ago
  53. a3a55bf Work around GCC PR19958, which causes programs to sometimes crash after by Chris Lattner · 21 years ago
  54. 80bb693 Implement and document prefix options with arbitrary values including an by Reid Spencer · 21 years ago
  55. d27b014 Fixed assertion from triggering. We need to check if the commandline map is empty before checking if an arg exists. by Tanya Lattner · 21 years ago
  56. 37bcd99 Patches to avoid "leaking" memory on process exit. Patch contributed by by Chris Lattner · 21 years ago
  57. f0173e0 Add a comment to some code that at first glance just doesn't look right. by Reid Spencer · 21 years ago
  58. 5e55470 Per code review: by Reid Spencer · 21 years ago
  59. 1f4ab8b Implement the MoreHelp utility that calls a function to printmore help information if the MoreHelp global is not null. by Reid Spencer · 21 years ago
  60. 8a75d2e Replace uses of llvm.org with llvm.cs.uiuc.edu by Misha Brukman · 21 years ago
  61. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  62. 9501b9b Make CommandLine prefix error output with the name of the program. by Reid Spencer · 21 years ago
  63. 2027a6f Allow any cl::opt to use the method getPosition() to retrieve the option's by Reid Spencer · 21 years ago
  64. ff6cc12 Add a --version option for every tool that prints out: by Reid Spencer · 21 years ago
  65. 13e5831 Add a workaround for a GCC 3.3.2 bug by Chris Lattner · 21 years ago
  66. d3ecc61 Fix compilation on internix by Chris Lattner · 21 years ago
  67. a60f355 Implement the new cl::PositionalEatsArgs flag, refactor code a bit by Chris Lattner · 22 years ago
  68. 33cb426 Hide variable from other functions. by Alkis Evlogimenos · 22 years ago
  69. c9499b6 Finegrainify namespacification by Chris Lattner · 22 years ago
  70. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  71. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  72. e5e5322 Change to use strtoul instead of strtoll. by Brian Gaeke · 22 years ago
  73. 6d069fc Add missing apostrophe. It's been bugging me for years. by Brian Gaeke · 22 years ago
  74. c08758a Fixed spelling & grammar. by Misha Brukman · 22 years ago
  75. 497216d lib/Support/CommandLine.cpp: by Brian Gaeke · 22 years ago
  76. ca782d9 Add support for reading command line arguments from an environment variable. by Brian Gaeke · 22 years ago
  77. 2da046f Add support for "named positional arguments" by Chris Lattner · 22 years ago
  78. 5258e59 Fixed grammatical error. by Misha Brukman · 22 years ago
  79. c18333a Lowercase versions of `occurrence' need to be spelled correctly, too. by Misha Brukman · 22 years ago
  80. 069e6b5 `Occurrence' has no `a' and the `r' is doubled. by Misha Brukman · 22 years ago
  81. 719c715 Add support for 'unsigned' command line arguments by Chris Lattner · 22 years ago
  82. 929f27a Add new CommaSeparated option modifier by Chris Lattner · 22 years ago
  83. a87170a Destroy using declarations by Chris Lattner · 22 years ago
  84. b4101b1 Simplify writing custom parsers. by Chris Lattner · 23 years ago
  85. 551e120 Fix lli with no arguments by Chris Lattner · 23 years ago
  86. 150e46b Fix bug that was causing problems for lli by Chris Lattner · 23 years ago
  87. 1f790af * Fix assertion failure caused by command line argument getting removed after by Chris Lattner · 23 years ago
  88. e04258d Remove needless #include by Chris Lattner · 23 years ago
  89. 10073a9 *** empty log message *** by Chris Lattner · 23 years ago
  90. ca0e79e Fix a bug exposed by lli by Chris Lattner · 23 years ago
  91. 494c0b0 *** empty log message *** by Chris Lattner · 23 years ago
  92. d49ea88 Minor bugfix, prevents error in LLI by Chris Lattner · 23 years ago
  93. 5df56c4 Checkin CommandLine 2.0 by Chris Lattner · 23 years ago
  94. 8f7b500 Add ability to update existing variables with values read from the command line by Chris Lattner · 23 years ago
  95. d5a8470 Eliminate duplicate or unneccesary #include's by Chris Lattner · 24 years ago
  96. 2294b4e 64 bit clean now by Chris Lattner · 24 years ago
  97. c2ef08c If an invalid alternative is listed for an argument, print the valid options by Chris Lattner · 24 years ago
  98. 7f74a56 Changes to build successfully with GCC 3.02 by Chris Lattner · 24 years ago
  99. 5de2204 Create a new #include "Support/..." directory structure to move things by Chris Lattner · 24 years ago
  100. f0f9105 * Implement support for folding multiple single letter arguments together like by Chris Lattner · 24 years ago