1. 3ea11cf Make bugpoint pass -load arguments to LLI. This lets one use bugpoint with by Duncan Sands · 15 years ago
  2. 05872ea Add compare_lower and equals_lower methods to StringRef. Switch all users of by Benjamin Kramer · 15 years ago
  3. ac53a0b Introduce and use convenience methods for getting pointer types by Duncan Sands · 15 years ago
  4. c332fba Remove the default value for ConstantStruct::get's isPacked parameter and by Nick Lewycky · 15 years ago
  5. 68ccdaa Add -output-prefix option to bugpoint (to change the default output name). by Daniel Dunbar · 15 years ago
  6. dad45ea Make bugpoint use ParseIRFile instead of doing the same thing manually. by Dan Gohman · 15 years ago
  7. 3061108 only print the override triple if it exists! by Chris Lattner · 15 years ago
  8. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 15 years ago
  9. 23132b1 prune the #includes in raw_ostream.h by moving a by Chris Lattner · 15 years ago
  10. 74382b7 Prune #includes from llvm/Linker.h and llvm/System/Path.h, by Chris Lattner · 15 years ago
  11. b683ea4 eliminate the ostream version of CheckBitcodeOutputToConsole, by Chris Lattner · 15 years ago
  12. b515d75 eliminate the std::ostream forms of the bitcode writing APIs. by Chris Lattner · 15 years ago
  13. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 15 years ago
  14. ad0f120 Proper MSVC build fix (and remove my hack again). Patch by Yonggang Luo. by Benjamin Kramer · 15 years ago
  15. e057e59 Add a hack to unbreak MSVC builds. str(n)casecmp are POSIX functions and aren't available on windows (mingw defines them though). by Benjamin Kramer · 15 years ago
  16. 40cce09 Include valgrind in the steps to reproduce if valgrind was used to reproduce by Nick Lewycky · 15 years ago
  17. ca74096 Change bugpoint to use Triple to make runtime decisions. by Daniel Dunbar · 15 years ago
  18. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
  19. 12ddd40 Make LLVMContext and LLVMContextImpl classes instead of structs. by Benjamin Kramer · 15 years ago
  20. 482cccd MSVC warning fixes; patch by Stein Roger! by Daniel Dunbar · 15 years ago
  21. d7f2a6c Privatize the StructType table, which unfortunately involves routing contexts through a number of APIs. by Owen Anderson · 15 years ago
  22. 8608cf2 Use (void *)(intptr_t) to cast function addresses to void* by Dan Gohman · 15 years ago
  23. 197f728 Fix FindExecutable to use sys::Path::GetMainExecutable instead of by Dan Gohman · 15 years ago
  24. 26964b6 Pass user only if it's non-empty. Patch by Sandeep. by Anton Korobeynikov · 15 years ago
  25. 86c006a Add save-temps option to bugpoint to keep temporary stuff. by Anton Korobeynikov · 15 years ago
  26. 48b2f3e Factor some of the constants+context related code out into a separate header, to make LLVMContextImpl.h by Owen Anderson · 15 years ago
  27. a7235ea Move a few more APIs back to 2.5 forms. The only remaining ones left to change back are by Owen Anderson · 15 years ago
  28. 9e9a0d5 Move more code back to 2.5 APIs. by Owen Anderson · 15 years ago
  29. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  30. baf3c40 Move ConstantExpr to 2.5 API. by Owen Anderson · 15 years ago
  31. 265d82e Add a bugpoint flag to disable block extraction. by David Goodwin · 15 years ago
  32. 1fd7096 Change ConstantArray to 2.5 API. by Owen Anderson · 15 years ago
  33. b6dec1b Pass true to the Internalize parameter of createStandardLTOPasses, by Dan Gohman · 15 years ago
  34. 8fa3338 Move ConstantStruct back to 2.5 API. by Owen Anderson · 15 years ago
  35. 3f53fa9 Remove Value::setName(const char*, unsigned). by Daniel Dunbar · 15 years ago
  36. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
  37. f6ccee5 Switch to getNameStr(). by Daniel Dunbar · 15 years ago
  38. e922c02 Get rid of the Pass+Context magic. by Owen Anderson · 15 years ago
  39. 49419e2 80 col violation. by Evan Cheng · 15 years ago
  40. 91cf361 For remote execution, must cd to the executable directory since the exe expects to find a dylib in the CWD ('.'). by David Goodwin · 15 years ago
  41. 1488670 Add -std-{compile,link}-opts to bugpoint. - Sheesh. by Daniel Dunbar · 15 years ago
  42. e0d5c17 fix test by Chris Lattner · 15 years ago
  43. 4285d15 DisambiguateGlobalSymbols should not mangle intrinsics. by Chris Lattner · 15 years ago
  44. fc2271f Require a remote command to exit with the exit status of the test program or with 255 if an error occurred. by Viktor Kutuzov · 15 years ago
  45. ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 15 years ago
  46. 0d7c695 To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. by Owen Anderson · 15 years ago
  47. a1bdced Add a Force option to raw_fd_ostream to specify whether opening by Dan Gohman · 15 years ago
  48. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  49. 9d5511b eliminate the Mangler::PreserveAsmNames bit, the sole client of this by Chris Lattner · 15 years ago
  50. f975e01 control reaches end of non-void function. by Evan Cheng · 15 years ago
  51. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
  52. 699220b Fix for bugpoint -remote-client by Viktor Kutuzov · 15 years ago
  53. b8158ac Reapply my previous asmprinter changes now with more testing and two by Chris Lattner · 15 years ago
  54. 1f316e3 Revert r7561{9,8,7,6}, which depend on r75610. by Daniel Dunbar · 15 years ago
  55. b585146 rename getValueName -> getMangledName by Chris Lattner · 15 years ago
  56. e860dcb #include "llvm/Assembly/Writer.h" to get the declaration for WriteAsOperand. by Dan Gohman · 15 years ago
  57. db1cd5e Fix the build. by Owen Anderson · 15 years ago
  58. 0a5372e Begin the painful process of tearing apart the rat'ss nest that is Constants.cpp and ConstantFold.cpp. by Owen Anderson · 15 years ago
  59. 84f9abe Fix unused function warning. by Daniel Dunbar · 15 years ago
  60. 80becf1 Support remote execute for ARM. by David Goodwin · 15 years ago
  61. 333c400 This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 15 years ago
  62. e9b11b4 Switch GlobalVariable ctors to a sane API, where *either* a context or a module is required. by Owen Anderson · 15 years ago
  63. 3d29df3 Push LLVMContext through GlobalVariables and IRBuilder. by Owen Anderson · 15 years ago
  64. 92bcb42 switch the .ll parser into SMDiagnostic. by Chris Lattner · 15 years ago
  65. 4434ed4 Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the by Owen Anderson · 15 years ago
  66. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  67. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  68. 028839d Fix the crash debugger to actually bisect globals once it's determined that it by Nick Lewycky · 15 years ago
  69. 4c8f9af Add a bisection step on the list of instructions before doing the linear by Nick Lewycky · 15 years ago
  70. 2c23501 Make bugpoint emit a bugpoint-reduced-blocks.bc, because bugpoint itself by Torok Edwin · 15 years ago
  71. 23d471f Add -disable-global-remove option to bugpoint. by Torok Edwin · 15 years ago
  72. 26edc21 bugpoint for jit should just ignore GCC arguments. by Evan Cheng · 15 years ago
  73. 0324205 Improve bugpoint's error messages when it runs out of memory, by Dan Gohman · 15 years ago
  74. d50330c Use CloneModule's ValueMap in more places, instead of looking by Dan Gohman · 15 years ago
  75. e032590 CloneModule stores the BasicBlock mapping in ValueMap. There's no need to by Nick Lewycky · 15 years ago
  76. fd82995 Also pass -gcc-tool-args when building a shared object. by Evan Cheng · 15 years ago
  77. cc14d25 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 15 years ago
  78. f6dd0eb Use CloneModule's ValueMap to avoid needing to look up by Dan Gohman · 15 years ago
  79. ef0ff14 Fix a bugpoint bug on anonymous functions. Instead of looking up by Dan Gohman · 15 years ago
  80. 38efa38 Add a "-gcc-tool-args" option. This option acts like the "-tool-args" option, by Bill Wendling · 15 years ago
  81. 865f006 Eliminate several more unnecessary intptr_t casts. by Dan Gohman · 15 years ago
  82. a971b29 Rename bugpoint's error message file so that if it somehow by Dan Gohman · 15 years ago
  83. 3a4baf1 fix bugpoint url, patch by Pieter de Bie! by Chris Lattner · 16 years ago
  84. bb46f52 Add the private linkage. by Rafael Espindola · 16 years ago
  85. df98617 Reimplement the old and horrible bison parser for .ll files with a nice by Chris Lattner · 16 years ago
  86. 70ef449 Generalize bugpoint's concept of a "safe" backend, and add options by Dan Gohman · 16 years ago
  87. 33b1c30 Remove -check-exit-code from bugpoint. This is subsumed by -append-exit-code. by Nick Lewycky · 16 years ago
  88. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 16 years ago
  89. 70f684f Allow use of ssh to perform remote execution. by Evan Cheng · 16 years ago
  90. bcbd9c4 Improve bugpoint output a bit by outputting the actual instructions instead of by Matthijs Kooijman · 16 years ago
  91. cebf59b Reformat this message to fit in 80 cols. by Dan Gohman · 16 years ago
  92. 7220b81 Global variables beginning with \01 have special meaning on Darwin, so we need to remove by Owen Anderson · 16 years ago
  93. ad6996d Let bugpoint display generated messages on stderr only if no interpreter was by Matthijs Kooijman · 16 years ago
  94. fbea227 Add -silence-passes option to bugpoint. This option suppresses output generated by Matthijs Kooijman · 16 years ago
  95. b1dbcd8 Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. by Gabor Greif · 16 years ago
  96. 9ef7425 Add possibility of using arbitrary to to execute stuff from bugpoint. by Anton Korobeynikov · 16 years ago
  97. e78109e several multiple-retval fixes for bugpoint. by Chris Lattner · 16 years ago
  98. 6bc41e8 Revert r49614. As Dan pointed out, some of these aren't correct. by Owen Anderson · 16 years ago
  99. 386ea35 Replace calls of the form V1->setName(V2->getName()) with V1->takeName(V2), by Owen Anderson · 16 years ago
  100. 58f3bcd Remove tabs. Patch by Mike Stump! by Bill Wendling · 16 years ago