1. 316e326 llvm-ld doesn't throw. by Chris Lattner · 15 years ago
  2. baa2639 Make LLVM command-line tools overwrite their output files without -f. by Dan Gohman · 15 years ago
  3. 74382b7 Prune #includes from llvm/Linker.h and llvm/System/Path.h, by Chris Lattner · 15 years ago
  4. 17e9edc Change raw_fd_ostream to take flags as an optional bitmask by Chris Lattner · 15 years ago
  5. 8608cf2 Use (void *)(intptr_t) to cast function addresses to void* by Dan Gohman · 15 years ago
  6. 197f728 Fix FindExecutable to use sys::Path::GetMainExecutable instead of by Dan Gohman · 15 years ago
  7. d7de7bc Added -b option to override the default bitcode output file name. by Sanjiv Gupta · 15 years ago
  8. ac95cc7 Convert more tools code from cerr and cout to errs() and outs(). by Dan Gohman · 15 years ago
  9. ff9834a Kill off last uses of TargetMachineRegistry class. by Daniel Dunbar · 15 years ago
  10. 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
  11. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  12. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  13. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  14. e0f0e0b Change LTO to run the global opt pass twice. - This matches llvm-ld. by Daniel Dunbar · 15 years ago
  15. 006a034 Add createStandardLTOPasses to StandardPasses.h, and move lto and llvm-ld over. by Daniel Dunbar · 15 years ago
  16. cc14d25 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 15 years ago
  17. 677c2c2 Add the function attributes pass during LTO time. by Nick Lewycky · 15 years ago
  18. 5d5a897 make llvm-ld smart enough to link against native libraries that are by Chris Lattner · 16 years ago
  19. 0c6ba44 ignore the -m elf_i386 directive used in the linux kernel by Andrew Lenharth · 16 years ago
  20. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 16 years ago
  21. 3688f26 Remove GCSE, ValueNumbering, and LoadValueNumbering. These have been deprecated for almost a year; it's finally time for them to go away. by Owen Anderson · 16 years ago
  22. 735e6ea Use ADCE instead of just DCE. ADCE will better clean up after jump threading, by Owen Anderson · 16 years ago
  23. ca29dff Since we are using GCC to assemble the program, make sure the assembly syntax is AT&T. by Argyrios Kyrtzidis · 16 years ago
  24. 6c31e87 run mem2reg after the second jump threading pass in llvm-ld. by Chris Lattner · 16 years ago
  25. 8e336eb remove some dead options. by Chris Lattner · 16 years ago
  26. 48cca1f Add an "exe" suffix only if the output file has no suffix at all. by Argyrios Kyrtzidis · 16 years ago
  27. 1662183 Make sure all produced executable files have "exe" suffix on Windows. by Argyrios Kyrtzidis · 16 years ago
  28. 5b90a72 Append "exe" suffix to executable files. by Argyrios Kyrtzidis · 16 years ago
  29. d2368dc Move MemCpyOpt after GVN. by Owen Anderson · 16 years ago
  30. e12d8e4 run the jump threading pass in llvm-ld also by Chris Lattner · 16 years ago
  31. a723d1e Factor a bunch of functionality related to memcpy and memset transforms out of by Owen Anderson · 16 years ago
  32. 230293b style and spelling by Andrew Lenharth · 16 years ago
  33. 50b5742 llvm-ld deserves disable-verify too. opt shouldn't have all the fun options. by Andrew Lenharth · 16 years ago
  34. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 16 years ago
  35. 3992f52 Add support for frameworks. Patch by Shantonu Sen! by Chris Lattner · 17 years ago
  36. 03a1c7a Fix llvm-ld -Xlinker, patch by Daniel Teske! by Chris Lattner · 17 years ago
  37. 21c62da remove attributions from tools. by Chris Lattner · 17 years ago
  38. 5116784 remove attributions from tools/utils makefiles. by Chris Lattner · 17 years ago
  39. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  40. d06eb2c Turn GVN on by default. by Owen Anderson · 17 years ago
  41. f6a05f9 Rename FastDSE to just DSE. by Owen Anderson · 17 years ago
  42. 0a4c8de Remove dead option. by Reid Spencer · 17 years ago
  43. b63c7b6 Turn on FastDSE by default. by Owen Anderson · 17 years ago
  44. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  45. 3f931b8 Fix pr1448 by Chris Lattner · 17 years ago
  46. 037a704 if internalize is disabled, don't run the pass at all! by Chris Lattner · 17 years ago
  47. 44dadff switch tools to bitcode instead of bytecode by Chris Lattner · 17 years ago
  48. bb3f3d3 add bitcode support. by Chris Lattner · 17 years ago
  49. 3b72639 Augment the verbose output to print out the sub-commands executed. by Reid Spencer · 17 years ago
  50. c8c5752 run a late dce pass to clean up extra cruft. by Chris Lattner · 17 years ago
  51. c82a5da For PR1302: by Reid Spencer · 17 years ago
  52. 54959d6 Now LICM is a LoopPass. by Devang Patel · 17 years ago
  53. 9ba8a76 Add possibility to set memory limit for binaries run via libSystem. This by Anton Korobeynikov · 17 years ago
  54. 708585a Clean up error handling. by Reid Spencer · 18 years ago
  55. 98a030c For PR1153: Copy a couple more missing options from gccld to llvm-ld. by Reid Spencer · 18 years ago
  56. 7f04c08 For PR1153: by Reid Spencer · 18 years ago
  57. ef9b9a7 For PR411: by Reid Spencer · 18 years ago
  58. 17be679 default to emiting an uncompressed .bc file by Chris Lattner · 18 years ago
  59. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 18 years ago
  60. c30598b make all llvm tools call llvm_shutdown when they exit, static'ify some stuff. by Chris Lattner · 18 years ago
  61. cd950a5 target constructors are never used by Chris Lattner · 18 years ago
  62. 68fe61d Replacing std::iostreams with llvm iostreams. Some of these changes involve by Bill Wendling · 18 years ago
  63. a089d44 Need <iostream> for the time being. by Bill Wendling · 18 years ago
  64. 2803b4c Minor style fixes from review. by Reid Spencer · 18 years ago
  65. 4952143 For PR998: by Reid Spencer · 18 years ago
  66. 7b28955 Fix a problem in the the last patch that subverts error message printing. by Reid Spencer · 18 years ago
  67. d41b30d Unbreak VC++ build. by Jeff Cohen · 18 years ago
  68. aea932d Use LINK_COMPONENTS to specify *components* to link against instead of by Chris Lattner · 18 years ago
  69. 7d51544 - Fixed broken Win32 build by Anton Korobeynikov · 18 years ago
  70. 30967a5 eliminate only use of FilteredPassNameParser by Chris Lattner · 18 years ago
  71. 5a06077 For PR797: by Reid Spencer · 18 years ago
  72. e5c9cb5 For PR797: by Reid Spencer · 18 years ago
  73. e1647f4 For PR797: by Reid Spencer · 18 years ago
  74. 8ea5ecb For PR797: by Reid Spencer · 18 years ago
  75. dcee9d0 Make sure the verify pass gets run after the user's loaded passes as well by Reid Spencer · 18 years ago
  76. ec9f050 Rename the -verify option to be -verify-each so that it doesn't conflict by Reid Spencer · 18 years ago
  77. 8e33fae Convert llvm-ld to use the PluginLoader like opt instead of having its by Reid Spencer · 18 years ago
  78. 0465fa9 Tools require EH for their top-level try blocks. by Chris Lattner · 18 years ago
  79. e2f8ad8 Fix cut-n-pasto in comments. by Devang Patel · 18 years ago
  80. 831b121 Don't pass target name into TargetData anymore, it is never used or needed. by Chris Lattner · 18 years ago
  81. 2991b01 Shorten a value description so --help out isn't so wide. by Reid Spencer · 18 years ago
  82. af303d5 For PR780: by Reid Spencer · 18 years ago
  83. 7c5357f Fix a -pedantic warning by Chris Lattner · 18 years ago
  84. 18c8b49 Use archive libraries instead of object files for VMCore, BCReader, by Reid Spencer · 18 years ago
  85. 2f86362 Delete memory allocated by CopyEnv by Chris Lattner · 18 years ago
  86. 78df5c3 Make sure command line options are parsed before we try to add the LibPath by Reid Spencer · 18 years ago
  87. f4484f3 For PR521: by Reid Spencer · 19 years ago
  88. 73a74be Implement PR512: by Reid Spencer · 19 years ago
  89. 328ead9 Adjust the constructor to the Linker class to take an argument that names by Reid Spencer · 19 years ago
  90. a115643 Move some constant folding code shared by Analysis and Transform passes by John Criswell · 19 years ago
  91. e96a1a5 1. Remove libraries no longer created from the list of libraries linked into the by John Criswell · 19 years ago
  92. fbcd54f Fix PR637 by Chris Lattner · 19 years ago
  93. a229c5c Final Changes For PR495: by Reid Spencer · 19 years ago
  94. dd04df0 For PR495: by Reid Spencer · 19 years ago
  95. 3da94ae Remove trailing whitespace by Misha Brukman · 19 years ago
  96. bf9add4 The first argument to ExecuteAndWait should be the program name, but pointed by Chris Lattner · 19 years ago
  97. 7456e3c Conform to the documented interface by null terminating argument lists! by Chris Lattner · 19 years ago
  98. 5fb6ed4 Use binary mode for reading/writing bytecode files by Jeff Cohen · 20 years ago
  99. 1ef8bda For PR351: by Reid Spencer · 20 years ago
  100. 8d8b41d Correct compilation for Cygwin. FindExecutable now returns a sys::Path. by Reid Spencer · 20 years ago