1. ec08046 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 16 years ago
  2. 2a1744f canonicalize namespace gymnastics by Chris Lattner · 16 years ago
  3. ed68788 Add comment re: clang dependency. by Daniel Dunbar · 16 years ago
  4. 251ef61 Added an abstract superclass, MCDisassembler, for all disassemblers. by Sean Callanan · 16 years ago
  5. c48edbb Make sure the memory range is writable before memset'ing it. by Evan Cheng · 16 years ago
  6. baf9b56 Add Triple::getArchTypeForDarwinArchName, which converts a "Darwin" architecture by Daniel Dunbar · 16 years ago
  7. 0247656 Improve JIT error message for users crazy enough to use -march with JIT, and by Daniel Dunbar · 16 years ago
  8. ee7110f Fix may-be-used-uninitialized warning. by Daniel Dunbar · 16 years ago
  9. 0268790 Avoid warnings if assertions are off. by Duncan Sands · 16 years ago
  10. c2d98bc Remove some not-really-used variables, as warned by Duncan Sands · 16 years ago
  11. 8b3594a More MSVC warning fixes: by Benjamin Kramer · 16 years ago
  12. 5b7c356 Remove splint hints to silence warnings from ICC and MSVC. by Benjamin Kramer · 16 years ago
  13. b7c5bdf Remove some unused variables and methods warned about by by Duncan Sands · 16 years ago
  14. 6552478 Show derived host triple in --version. by Daniel Dunbar · 16 years ago
  15. eed51b0 Update CMake files. by Ted Kremenek · 16 years ago
  16. 768f1dd Add triple parsing support for XCore. by Richard Osborne · 16 years ago
  17. 12420d3 Fix some possible-use-of-uninitialized warnings. by Daniel Dunbar · 16 years ago
  18. ce0c81e Add regular expression matching support, based on OpenBSD regexec()/regcomp() by Torok Edwin · 16 years ago
  19. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 16 years ago
  20. 2e193f8 CMake: updated list of source files. by Oscar Fuentes · 16 years ago
  21. 688b55b Add llvm::Triple::getArchTypePrefix for getting the intrinsic prefix for an by Daniel Dunbar · 16 years ago
  22. cb1308b Correctly account for the Spaces array nul terminator. Thanks Chris! by Dan Gohman · 16 years ago
  23. 61ee100 raw_ostream::indent is used for PadToColumn which often prints more by Dan Gohman · 16 years ago
  24. 32e1eef split raw_os_ostream out to its own header and implementation file. This by Chris Lattner · 16 years ago
  25. 23132b1 prune the #includes in raw_ostream.h by moving a by Chris Lattner · 16 years ago
  26. 2d5e3ac Unbreak the build for HAVE_GV platforms. by Dan Gohman · 16 years ago
  27. e029305 CMake: Updated library dependencies and list of source files. by Oscar Fuentes · 16 years ago
  28. 91021d3 remove the dead std::ostream APInt inserter by Chris Lattner · 16 years ago
  29. 40ef79d fix some problems with my last patch which happen when one of by Chris Lattner · 16 years ago
  30. 74382b7 Prune #includes from llvm/Linker.h and llvm/System/Path.h, by Chris Lattner · 16 years ago
  31. 28fb7c4 llvm/Support/Streams.h is now dead, zap it. by Chris Lattner · 16 years ago
  32. b683ea4 eliminate the ostream version of CheckBitcodeOutputToConsole, by Chris Lattner · 16 years ago
  33. 9441cfe Fix off-by-one in llvm::Format::print. by Daniel Dunbar · 16 years ago
  34. ca17934 clean up #includes. by Chris Lattner · 16 years ago
  35. cfa6ec9 Kill off more cerr/cout uses and prune includes a bit. by Benjamin Kramer · 16 years ago
  36. d227a3f Remove uses of Streams.h from CommandLine.cpp, fix some whitespace and other minor tweaks. by Benjamin Kramer · 16 years ago
  37. ae60324 Fix windows build. by Benjamin Kramer · 16 years ago
  38. 43ed267 Fix some refactos for iostream changes (in -Asserts mode). by Daniel Dunbar · 16 years ago
  39. d9ea85a remove some uses of llvm/Support/Streams.h by Chris Lattner · 16 years ago
  40. 103289e convert LoopInfo.h and GraphWriter.h to use raw_ostream by Chris Lattner · 16 years ago
  41. a36b81d eliminate DOUT and make Debug.h not include Streams.h anymore, woo! by Chris Lattner · 16 years ago
  42. 45cfe54 Change Pass::print to take a raw ostream instead of std::ostream, by Chris Lattner · 16 years ago
  43. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 16 years ago
  44. de51ded switch formattedstream to use raw_ostream::indent. This eliminates by Chris Lattner · 16 years ago
  45. c5a227d add a raw_ostream::indent method, to be used like: by Chris Lattner · 16 years ago
  46. 4755e99 Fix typo. by Anton Korobeynikov · 16 years ago
  47. 7e844f1 Implement APInt <-> APFloat conversion for IEEE 128-bit floats. by Anton Korobeynikov · 16 years ago
  48. 56c39eb Clean up the APInt function getDigit. by Erick Tryzelaar · 16 years ago
  49. e250f2a Update error messages for '+'. Fix grammar and make the two by Eric Christopher · 16 years ago
  50. d37eda8 Fix trailing whitespace and 80-col violation. by Eric Christopher · 16 years ago
  51. ae8f78d Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9. by Erick Tryzelaar · 16 years ago
  52. bb97531 Allow '+' to appear in APInt strings, and add more unit tests. by Erick Tryzelaar · 16 years ago
  53. c78b33b Add support for including '+' in APFloat strings, more asserts, by Erick Tryzelaar · 16 years ago
  54. 073f5b6 Add a comment explaining why llvm_unreachable_internal doesn't call by Dan Gohman · 16 years ago
  55. cdd93d8 Fix two APFloat bugs in converting hexadecimal constants. by Daniel Dunbar · 16 years ago
  56. 74db89e Add triple parsing support for TCE. by Eli Friedman · 16 years ago
  57. dddfd34 Switch to SmallString::str from SmallString::c_str, and remove by Daniel Dunbar · 16 years ago
  58. d14787e Change raw_svector_ostream to reserve the input buffer if necessary, Ted was by Daniel Dunbar · 16 years ago
  59. b7be0e8 Switch Twine::str() to use toVector(), which is now efficient. by Daniel Dunbar · 16 years ago
  60. 425d08c Switch raw_svector_ostream to use the vector as the ostream buffer. by Daniel Dunbar · 16 years ago
  61. ecbd0bc Speculatively revert r79375, which may be breaking bootstrap, although in a by Daniel Dunbar · 16 years ago
  62. ecc67e2 raw_ostream: Simplify write(unsigned char) to match write(const char*, unsigned). by Daniel Dunbar · 16 years ago
  63. d29d497 raw_ostream: Remove pointless redefinitions of tell(). by Daniel Dunbar · 16 years ago
  64. 906d5b4 raw_ostream: Add the capability for subclasses to manually install an external by Daniel Dunbar · 16 years ago
  65. ab81027 raw_ostream: Reduce FormattedStream's reliance on raw_ostream's implementation. by Daniel Dunbar · 16 years ago
  66. 3b3de92 Speed up raw_ostream::<<(unsigned long long) for 32-bit systems by doing most by Daniel Dunbar · 16 years ago
  67. 3731604 Fix a bug in raw_ostream::write(char) introduced by the change to by Dan Gohman · 16 years ago
  68. 35979c0 Revert r78924, disabling buffering defeats all the fast paths in raw_ostream. by Daniel Dunbar · 16 years ago
  69. 651aa68 Improve Triple to recognize the OS in i386-mingw32. by Daniel Dunbar · 16 years ago
  70. f8bc801 Fix an uninitialized value warning in APFloat. by Erick Tryzelaar · 16 years ago
  71. b26bc42 Fix Triple to recognize the 'bfin' arch. by Daniel Dunbar · 16 years ago
  72. 2447389 Recognize xscale as an ARM arch. - Patch by Yonggang Luo. by Daniel Dunbar · 16 years ago
  73. fdb0b7b Add Triple matching for pic16 arch and solaris OS. - Patch by Yonggang Luo. by Daniel Dunbar · 16 years ago
  74. 8f4b1ec the MinPad argument to PadToColumn only really makes sense to be 1, by Chris Lattner · 16 years ago
  75. a15d890 Modify APFloat to take a StringRef instead of a c string. by Erick Tryzelaar · 16 years ago
  76. b4741a7 Mingw also doesn't have st_blksize. by Dan Gohman · 16 years ago
  77. d7be663 Always check to see if raw_fd_ostream's file descriptor is attached to by Dan Gohman · 16 years ago
  78. fbcb5b6 Add support for column computation on unbuffered streams. by Dan Gohman · 16 years ago
  79. a4a68c1 Move FormattedStream's write_impl out of line. by Dan Gohman · 16 years ago
  80. 1486ef9 Remove an unnecessary #include. by Dan Gohman · 16 years ago
  81. 56ce0f4 fix "pc" to be lower case in a target triple, patch by Yonggang Luo by Chris Lattner · 16 years ago
  82. ec9b261 When standard output is a terminal, set outs() to be unbuffered, to by Dan Gohman · 16 years ago
  83. c6126e8 Fix a compiler warning about comparing signed with unsigned. by Dan Gohman · 16 years ago
  84. 4e8e642 Add an assert to check copy_to_buffer's precondition. by Dan Gohman · 16 years ago
  85. 0ba50bb Set raw_os_ostream, raw_string_ostream, and raw_svector_ostream to be by Dan Gohman · 16 years ago
  86. 208ec0f Add support to raw_ostream for sizing the buffer according to the by Dan Gohman · 16 years ago
  87. 524dea4 Move SetBufferSize and SetUnbuffered out of line. by Dan Gohman · 16 years ago
  88. 33e49ef Fix the buffer handling logic so that write_impl is always called with by Dan Gohman · 16 years ago
  89. 689ad6e Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef. by Daniel Dunbar · 16 years ago
  90. a9ad041 This void is implicit in C++. by Dan Gohman · 16 years ago
  91. 4e97a0f Add attempted idiotproofing comment per review. by Dale Johannesen · 16 years ago
  92. 39c177d Fix a nondeterministic bug in APInt::roundToDouble; by Dale Johannesen · 16 years ago
  93. b796c4f the x86 version of the name is x86-64, not x86_64. Handle this properly by Chris Lattner · 16 years ago
  94. 8e62083 add support for mingw64 target triples. by Chris Lattner · 16 years ago
  95. dfc17f7 add a couple of helpers to the Triple class for decoding by Chris Lattner · 16 years ago
  96. 1d96ccc add a trivial line # cache to SourceMgr to make repeated queries to by Chris Lattner · 16 years ago
  97. ca15f3d Add support for a user supplied pointer argument to llvm_install_error_handler. by Daniel Dunbar · 16 years ago
  98. 197f728 Fix FindExecutable to use sys::Path::GetMainExecutable instead of by Dan Gohman · 16 years ago
  99. c2a9eeb cerr isn't buffered so it doesn't need to be flushed. by Dan Gohman · 16 years ago
  100. 4bd03ab Remove now unused arguments from TargetRegistry::lookupTarget. by Daniel Dunbar · 16 years ago