1. d65ad3c6 Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 16 years ago
  2. bc57690 Suppress use of uninitialized variable warning. by Duncan Sands · 16 years ago
  3. 67c7025 Change errs() to dbgs(). by David Greene · 16 years ago
  4. 96d7b18 Print a newline after the Args: line so that unrelated errs() output doesn't by Dan Gohman · 16 years ago
  5. 58f610e Perform explicit instantiations in the proper namespace, since Clang diagnoses this ill-formity. by Douglas Gregor · 16 years ago
  6. c8cb0d9 Move the handling of CommaSeparated options into ProvideOption. by Mikhail Glushenkov · 16 years ago
  7. 766a36d Trailing whitespace. by Mikhail Glushenkov · 16 years ago
  8. c77d9a4 Revert CPU detection code to return "generic" instead of an empty string in case by Benjamin Kramer · 16 years ago
  9. d31559c Report the detected host CPU in --version. by Daniel Dunbar · 16 years ago
  10. 8e51aeb Show command-line args and features passed into backend in debug output. Approved by Evan Cheng. by Sandeep Patel · 16 years ago
  11. 870fd04 Bugfix for the CommaSeparated option. The original code was adding the whole by Nicolas Geoffray · 16 years ago
  12. c8b7066 reapply r82348 with a fix, thanks Jeffrey. by Chris Lattner · 16 years ago
  13. 07c5e3c Roll back r82348, which introduced an infinite loop in ParseCStringVector() that by Jeffrey Yasskin · 16 years ago
  14. a77caae tidy up by Chris Lattner · 16 years ago
  15. e4a6ac9 smallvectorize getExtraOptionNames by Chris Lattner · 16 years ago
  16. 3d211b2 minor cleanups. by Chris Lattner · 16 years ago
  17. 8748d23 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 16 years ago
  18. a816536 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 16 years ago
  19. 0d9aff4 the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 16 years ago
  20. c824096 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
  21. 34bbc24 Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 16 years ago
  22. ab75491 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 16 years ago
  23. 97be18f switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 16 years ago
  24. 78f024b change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 16 years ago
  25. d516d02 Several changes together in a murky mess: by Chris Lattner · 16 years ago
  26. a0a39c3 Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 16 years ago
  27. 0a5bcfc convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 16 years ago
  28. d8168dd convert 'Value' to StringRef which makes it easier to by Chris Lattner · 16 years ago
  29. 4627c68 Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 16 years ago
  30. 17e5709 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 16 years ago
  31. 2ee921e coding style cleanup by Chris Lattner · 16 years ago
  32. 157229d convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 16 years ago
  33. 747e01e avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 16 years ago
  34. 717f773 Avoid some temporary strings. by Chris Lattner · 16 years ago
  35. 47d05cb convert a bunch of std::strings to use StringRef. This should eliminate by Chris Lattner · 16 years ago
  36. 4808660 Try to speed up the slowest parts of the CommandLine library by Benjamin Kramer · 16 years ago
  37. 401011e Show derived host triple in --version. by Daniel Dunbar · 16 years ago
  38. 9cb435b clean up #includes. by Chris Lattner · 16 years ago
  39. 32dd023 Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other minor tweaks. by Benjamin Kramer · 16 years ago
  40. 5febcae remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  41. 9164c67 Remove duplicated colons and spaces. by Benjamin Kramer · 16 years ago
  42. 8032993 Sort list of targets in --version. by Daniel Dunbar · 16 years ago
  43. 9b3edb6 Add registered target list to --version output. by Daniel Dunbar · 16 years ago
  44. bd448e3 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Edwin Török · 16 years ago
  45. 675d562 assert(0) -> LLVM_UNREACHABLE. by Edwin Török · 16 years ago
  46. ced9ff8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Edwin Török · 16 years ago
  47. f0d2d95 Add support for a character after a command line option. Like '-Os'. by Bill Wendling · 16 years ago
  48. 250dbdc Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 16 years ago
  49. cdd50fc * Fixed spelling of `invertible' * Simplified if statement by Misha Brukman · 16 years ago
  50. 5ea5ba8 move a large method out of line. by Chris Lattner · 16 years ago
  51. 3567d38 Improve -fno-opt style option processing to not require an extra by Mike Stump · 17 years ago
  52. 66fcfa4 Add opposite_of and inverse_opt to support -fno- style options. This by Mike Stump · 17 years ago
  53. c591ed14 Clarify comment. by Mikhail Glushenkov · 17 years ago
  54. 0215ec2 Mimic gcc behaviour with regard to response files. by Mikhail Glushenkov · 17 years ago
  55. ad6fc7f Support for multi-valued options in CommandLine by Mikhail Glushenkov · 17 years ago
  56. 7a1210f Tweak --version to include the date and time. by Steve Naroff · 17 years ago
  57. abfdef3 remove unused var by Nuno Lopes · 17 years ago
  58. 669b9bf Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
  59. 5e27009 Give a proper error message when a command line option is defined more than by Matthijs Kooijman · 17 years ago
  60. 591bfc8 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 17 years ago
  61. 7015ef8 Add support for response files to the CommandLine library. by Mikhail Glushenkov · 17 years ago
  62. 40bd38e Add explicit keywords. by Dan Gohman · 17 years ago
  63. 12300e1 A quick nm audit turned up several fixed tables and objects that were by Dan Gohman · 17 years ago
  64. e411a2d Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 17 years ago
  65. 6288e92 Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 18 years ago
  66. 357a27d Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  67. 081ce94 Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  68. 61db06b Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
  69. 6099df8 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  70. f17a25c It's not necessary to do rounding for alloca operations when the requested by Dan Gohman · 18 years ago