1. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  2. 9a52632 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 17 years ago
  3. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  4. 81da02b Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 17 years ago
  5. 69d6f13 improve the patch for PR1318 to also support grouped options with custom by Chris Lattner · 17 years ago
  6. 159b0a43 Fix PR1318 by reacting appropriately to a mutating option list. by Chris Lattner · 17 years ago
  7. ee2b320 Fix a bug in my earlier commit which exposed positional options backwards. by Chris Lattner · 17 years ago
  8. 9878d6a rearchitect the registration mechanism used by the command line option stuff. by Chris Lattner · 17 years ago
  9. af035f3 remove the dead removeArgument method, rename Options to OptionsMap. by Chris Lattner · 17 years ago
  10. aed293d Add PrintVersionMessage() that tools can use to print version number by Devang Patel · 18 years ago
  11. 1a097e3 Don't use <sstream> in Streams.h but <iosfwd> instead. by Bill Wendling · 18 years ago
  12. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 18 years ago
  13. fe6b146 Removed #include <iostream> and replace with llvm_* streams. by Bill Wendling · 18 years ago
  14. efa3da5 avoid a ctor/dtor issue with the ProgramName global. by Chris Lattner · 18 years ago
  15. 500d8bf shrink anon-ns and mark stuff static. No functionality changes by Chris Lattner · 18 years ago
  16. 90aa839 Fix more static dtor issues by Chris Lattner · 18 years ago
  17. 2328858 Minor code cleanups by Chris Lattner · 18 years ago
  18. 7422a76 Add external definitions for commonly-used template specializations and add by Chris Lattner · 18 years ago
  19. 6f4c607 Make the ProgramName variable a std::string so we can eliminate the path by Reid Spencer · 18 years ago
  20. 023fcf9 For PR797: by Reid Spencer · 18 years ago
  21. abe0e3e If the Program name was NULL then all further output sent to std::cerr was by Jim Laskey · 18 years ago
  22. 433fd76 Add an out-of-line virtual method to provide a home for the cl::option class. by Chris Lattner · 18 years ago
  23. 3fc2f4e Print LLVM version info like this: by Chris Lattner · 18 years ago
  24. 515b5b3 Make it possible to override the standard version printer. Not all tools by Reid Spencer · 18 years ago
  25. a0de843 Fix PR743: emit -help output of a tool to cout, not cerr. by Chris Lattner · 18 years ago
  26. 79959d2 Add support for programs with a null argv[0] by Chris Lattner · 19 years ago
  27. 786e3e2 MERRY CHRISTMAS EVERYONE!!! (what better way to spend christmas than by Duraid Madina · 19 years ago
  28. d5bd52c indicate when a tool is a debug build. by Chris Lattner · 19 years ago
  29. 21e1a79 Allow tools with "consume after" options (like lli) to take more positional by Chris Lattner · 19 years ago
  30. de01324 Reject command lines that have too many positional arguments passed (e.g., by Chris Lattner · 19 years ago
  31. 4bf7afc Capitalize by Chris Lattner · 19 years ago
  32. 6d5857e Do not use "" as a sentinal for a missing argument! This fixes PR560. by Chris Lattner · 19 years ago
  33. f976c85 Remove trailing whitespace by Misha Brukman · 19 years ago
  34. a92d12c Work around GCC PR19958, which causes programs to sometimes crash after by Chris Lattner · 19 years ago
  35. 5f8448f Implement and document prefix options with arbitrary values including an by Reid Spencer · 20 years ago
  36. c4ae8e9 Fixed assertion from triggering. We need to check if the commandline map is empty before checking if an arg exists. by Tanya Lattner · 20 years ago
  37. c540ebb Patches to avoid "leaking" memory on process exit. Patch contributed by by Chris Lattner · 20 years ago
  38. 5cc498f Add a comment to some code that at first glance just doesn't look right. by Reid Spencer · 20 years ago
  39. 9bbba091 Per code review: by Reid Spencer · 20 years ago
  40. ad0846b Implement the MoreHelp utility that calls a function to printmore help information if the MoreHelp global is not null. by Reid Spencer · 20 years ago
  41. fb4863a Replace uses of llvm.org with llvm.cs.uiuc.edu by Misha Brukman · 20 years ago
  42. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  43. e1cc150 Make CommandLine prefix error output with the name of the program. by Reid Spencer · 20 years ago
  44. 1e13fd2 Allow any cl::opt to use the method getPosition() to retrieve the option's by Reid Spencer · 20 years ago
  45. 69105f3 Add a --version option for every tool that prints out: by Reid Spencer · 20 years ago
  46. f98cfc7 Add a workaround for a GCC 3.3.2 bug by Chris Lattner · 20 years ago
  47. 5114004 Fix compilation on internix by Chris Lattner · 20 years ago
  48. bf455c2 Implement the new cl::PositionalEatsArgs flag, refactor code a bit by Chris Lattner · 20 years ago
  49. 5f65add Hide variable from other functions. by Alkis Evlogimenos · 20 years ago
  50. 2cdd21c Finegrainify namespacification by Chris Lattner · 21 years ago
  51. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  52. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  53. 2d6a236 Change to use strtoul instead of strtoll. by Brian Gaeke · 21 years ago
  54. c86e84b Add missing apostrophe. It's been bugging me for years. by Brian Gaeke · 21 years ago
  55. 950971d Fixed spelling & grammar. by Misha Brukman · 21 years ago
  56. c48ef2a lib/Support/CommandLine.cpp: by Brian Gaeke · 21 years ago
  57. 06b06c5 Add support for reading command line arguments from an environment variable. by Brian Gaeke · 21 years ago
  58. 9cf3d47 Add support for "named positional arguments" by Chris Lattner · 21 years ago
  59. 1115e04 Fixed grammatical error. by Misha Brukman · 21 years ago
  60. b5c520b Lowercase versions of `occurrence' need to be spelled correctly, too. by Misha Brukman · 21 years ago
  61. dd6cb6a `Occurrence' has no `a' and the `r' is doubled. by Misha Brukman · 21 years ago
  62. d2a6fc3 Add support for 'unsigned' command line arguments by Chris Lattner · 21 years ago
  63. 72fb8e5 Add new CommaSeparated option modifier by Chris Lattner · 21 years ago
  64. ca6433f Destroy using declarations by Chris Lattner · 21 years ago
  65. 9b14eb5 Simplify writing custom parsers. by Chris Lattner · 22 years ago
  66. b490c20 Fix lli with no arguments by Chris Lattner · 22 years ago
  67. d16714b Fix bug that was causing problems for lli by Chris Lattner · 22 years ago
  68. e8e258b * Fix assertion failure caused by command line argument getting removed after by Chris Lattner · 22 years ago
  69. 99b7c1a Remove needless #include by Chris Lattner · 22 years ago
  70. 0c0edf8 *** empty log message *** by Chris Lattner · 22 years ago
  71. faba809 Fix a bug exposed by lli by Chris Lattner · 22 years ago
  72. aa852bb *** empty log message *** by Chris Lattner · 22 years ago
  73. 54ec7ae Minor bugfix, prevents error in LLI by Chris Lattner · 22 years ago
  74. 331de23 Checkin CommandLine 2.0 by Chris Lattner · 22 years ago
  75. 71fb716 Add ability to update existing variables with values read from the command line by Chris Lattner · 22 years ago
  76. c6f3ae5 Eliminate duplicate or unneccesary #include's by Chris Lattner · 22 years ago
  77. 7f1576f 64 bit clean now by Chris Lattner · 22 years ago
  78. 9c9be48 If an invalid alternative is listed for an argument, print the valid options by Chris Lattner · 23 years ago
  79. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 23 years ago
  80. cee8f9a Create a new #include "Support/..." directory structure to move things by Chris Lattner · 23 years ago
  81. f78032f * Implement support for folding multiple single letter arguments together like by Chris Lattner · 23 years ago
  82. caccd76 Provide option to enable eating of all arguments following a specific one by Chris Lattner · 23 years ago
  83. f038acb Clean up error handling a bit. Add / as a seperator for command line arguments. This is just a big old ugly hack. by Chris Lattner · 23 years ago
  84. d215fd1 Add StringList support by Chris Lattner · 23 years ago
  85. 3805e4c Fixed a bug exposed when doing something like this: <program> -notanoption --help by Chris Lattner · 23 years ago
  86. 2233a07 Doh! Wrong Optional flag. :( by Chris Lattner · 23 years ago
  87. 03fe1bd Add a comment indicating that there is documentation of the library by Chris Lattner · 23 years ago
  88. dc4693d Minor changes to implementation of CommandLine library to let users override by Chris Lattner · 23 years ago
  89. 1e78f36 CommandLine library cleanup. No longer use getValue/setValue, instead, just treat the commandline by Chris Lattner · 23 years ago
  90. 57dbb3a Moved inline/llvm/Tools/* to include/llvm/Support/* by Chris Lattner · 23 years ago
  91. dbab15a Initial checkin by Chris Lattner · 23 years ago