1. f4a4815 fix build problem pointed out by John Thompson! by Chris Lattner · 15 years ago
  2. bb4688a fix file header by Chris Lattner · 15 years ago
  3. f9f065e Add a skeleton driver for new machine code level fun. llvm-mc is meant by Chris Lattner · 15 years ago
  4. 2deb58f switch to using llvm/Target/TargetSelect.h by Chris Lattner · 15 years ago
  5. 8189d40 Fix libLTO by #include'ing the initializers for all targets and all asm by Nick Lewycky · 15 years ago
  6. 4aecec1 Another small documentation update. by Mikhail Glushenkov · 15 years ago
  7. c447ff6 Use Doug's new LLVM_NATIVE_ARCH macro in config.h to link in the native by Chris Lattner · 15 years ago
  8. 6be9266 Remove support for building LLVM libraries into "relinked" by Chris Lattner · 15 years ago
  9. 1555a23 Introduce new headers whose inclusion forces linking and by Douglas Gregor · 15 years ago
  10. 530f399 Documentation update. by Mikhail Glushenkov · 15 years ago
  11. 42de34f Remove the gcc= option. llvm-gcc uses only as= by Rafael Espindola · 15 years ago
  12. f403cd7 Bug fix: by Rafael Espindola · 15 years ago
  13. 9dcc26b A basic PIC16 toolchain driver. by Mikhail Glushenkov · 15 years ago
  14. a9b9032 Add option for specifying the path to assembler, "as". This overrides the path by Nick Lewycky · 15 years ago
  15. 578efa9 Add new function attribute - noimplicitfloat by Devang Patel · 15 years ago
  16. d18e31a Add new function attribute - noredzone. by Devang Patel · 15 years ago
  17. 8eeb96d CMake: Use explicit dependencies for Xcode (as well as MSVC), to make by Douglas Gregor · 15 years ago
  18. d8b4711 <rdar://problem/6944342> libLTO for darwin should add -static when assembling .s by Nick Kledzik · 15 years ago
  19. cbad586 <rdar://problem/6940611> libLTO.dylib needs to let linker specify path to assembler by Nick Kledzik · 15 years ago
  20. f5a1c35f1 <rdar://problem/6941517> C++ static constructors not preserved for static executable using LTO by Nick Kledzik · 15 years ago
  21. e0f0e0b Change LTO to run the global opt pass twice. - This matches llvm-ld. by Daniel Dunbar · 15 years ago
  22. 006a034 Add createStandardLTOPasses to StandardPasses.h, and move lto and llvm-ld over. by Daniel Dunbar · 15 years ago
  23. ca8131e Switch opt to using StandardPasses.h by Daniel Dunbar · 15 years ago
  24. 81a8755 CMake: Implements and documents option LLVM_ENABLE_ASSERTS. by Oscar Fuentes · 15 years ago
  25. 4bdf730 update comments about .objc_ symbols being generated by Nick Kledzik · 15 years ago
  26. 3eb445f <rdar://problem/6927148> libLTO needs to handle i386 magic objc class symbols by Nick Kledzik · 15 years ago
  27. 079c034 Add missing codenames to the .bc analyzer. by Nick Lewycky · 15 years ago
  28. 63d6f32 Untabify. by Evan Cheng · 15 years ago
  29. 1a53cbf CMake: Set LIBS on llvm-config so we can query the system libraries by Oscar Fuentes · 15 years ago
  30. 028839d Fix the crash debugger to actually bisect globals once it's determined that it by Nick Lewycky · 15 years ago
  31. 4c8f9af Add a bisection step on the list of instructions before doing the linear by Nick Lewycky · 15 years ago
  32. 2c23501 Make bugpoint emit a bugpoint-reduced-blocks.bc, because bugpoint itself by Torok Edwin · 15 years ago
  33. 23d471f Add -disable-global-remove option to bugpoint. by Torok Edwin · 15 years ago
  34. 1028743 Make sure the CXXFLAGS setting is picked up by by Duncan Sands · 15 years ago
  35. e89331b The 'forward_as' property did not use its second argument. by Mikhail Glushenkov · 15 years ago
  36. 26edc21 bugpoint for jit should just ignore GCC arguments. by Evan Cheng · 15 years ago
  37. 712e80e Default llc / lli optimization to "Default", which corresponds to -O1 / -O2. by Evan Cheng · 15 years ago
  38. fbccdef Fix a compiler warning on hosts where uint64_t isn't unsigned long long. by Dan Gohman · 15 years ago
  39. 195bea3 Allow a user of libLTO to specify the full pathname of the gcc executable to by Nick Lewycky · 15 years ago
  40. 581b934 Remove unused flags. by Bill Wendling · 15 years ago
  41. 8dc85dd Error out with bad optimization level specified. by Bill Wendling · 15 years ago
  42. b8cb0bb Remove LTO optimization level. by Bill Wendling · 15 years ago
  43. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 15 years ago
  44. a7e326b Don't use 'false' for 'fast isel' here. by Bill Wendling · 15 years ago
  45. be8cc2a Second attempt: by Bill Wendling · 15 years ago
  46. c69d56f r70270 isn't ready yet. Back this out. Sorry for the noise. by Bill Wendling · 16 years ago
  47. 2e9d5f9 Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to by Bill Wendling · 16 years ago
  48. 0370cc6 give bitstreamreader an API to ignore names for blocks/records, by Chris Lattner · 16 years ago
  49. c167cac Print statistics for each record kind saying the number of bits by Chris Lattner · 16 years ago
  50. 2443747 clean up the output of llvm-bcanalyzer by using printf by Chris Lattner · 16 years ago
  51. 0324205 Improve bugpoint's error messages when it runs out of memory, by Dan Gohman · 16 years ago
  52. f9a3ec8 Add two new record types to the blockinfo block: by Chris Lattner · 16 years ago
  53. 962dde3 Make a major API change to BitstreamReader: split all the reading by Chris Lattner · 16 years ago
  54. 0694290 aDd support for building a subset of the llvm tools, patch by Jeffrey Yasskin! by Chris Lattner · 16 years ago
  55. 7431af0 Add LTO_SYMBOL_DEFINITION_WEAKUNDEF, use that on the gold plugin. by Rafael Espindola · 16 years ago
  56. d50330c Use CloneModule's ValueMap in more places, instead of looking by Dan Gohman · 16 years ago
  57. 4558f48 Support --with-llvmgccdir and friends in llvmc, take 2. by Mikhail Glushenkov · 16 years ago
  58. 911c606 Remove clang since its conditionally there already. by Tanya Lattner · 16 years ago
  59. 2bdf490 Emit the auto variables of a function into a different section than parameters. by Sanjiv Gupta · 16 years ago
  60. 51747a7 Use .empty() instead of .size(). by Dan Gohman · 16 years ago
  61. 5a22d6a Revert 69474 and 69475. They are causing failures during a bootstrap on Darwin. by Bill Wendling · 16 years ago
  62. 7ba8ad3 Add a configure check for llvm-gcc (reapply). by Mikhail Glushenkov · 16 years ago
  63. ebcceee Temporarily revert r69438 and r69439. These were causing failures during a by Bill Wendling · 16 years ago
  64. 126b014 Add a configure check for llvm-gcc. by Mikhail Glushenkov · 16 years ago
  65. 266c7bb Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
  66. 47a4edc Accommodate empty string for build type. This was previously causing an error by Ted Kremenek · 16 years ago
  67. ae7dd80 Add an API for the bitstream reader to read blobs and return by Chris Lattner · 16 years ago
  68. 3f75d31 stub out code for reading record with blobs as blobs. Not active yet. by Chris Lattner · 16 years ago
  69. e2a466b Teach llvm-bcanalyzer to skip over the header we use on LLVM IR files. by Chris Lattner · 16 years ago
  70. 9a0107d CMake: defines and uses macro add_llvm_definitions for keeping track by Oscar Fuentes · 16 years ago
  71. e032590 CloneModule stores the BasicBlock mapping in ValueMap. There's no need to by Nick Lewycky · 16 years ago
  72. cf2202a CMake: tools/llvm-config/CMakeLists.txt: Use ! instead of comma as by Oscar Fuentes · 16 years ago
  73. a9f4836 Fixed file header comment. by Misha Brukman · 16 years ago
  74. 9f777c6 Recognize arm triplets. by Evan Cheng · 16 years ago
  75. de551f9 Use CHAR_BIT instead of hard-coding 8 in several places where it by Dan Gohman · 16 years ago
  76. 4680102 Do not pass '-relocation-model=pic' to llc. by Mikhail Glushenkov · 16 years ago
  77. 4ad0d57 Documentation update. by Mikhail Glushenkov · 16 years ago
  78. 23120ba CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose. by Evan Cheng · 16 years ago
  79. 4752bd3 CMake: Build system fixes for XCode. llvm-config still causes us some serious trouble, but it's less serious than it used to be by Douglas Gregor · 16 years ago
  80. fd82995 Also pass -gcc-tool-args when building a shared object. by Evan Cheng · 16 years ago
  81. 773f57e Another bug :( by Anton Korobeynikov · 16 years ago
  82. 317bc24 Unbreak the build. Dunno, why it did not fail on mingw :( by Anton Korobeynikov · 16 years ago
  83. ad9d21a Disable plugins / shared stuff generation on windows targets. by Anton Korobeynikov · 16 years ago
  84. 4832f88 Change these sed lines to behave correctly when the input string by Dan Gohman · 16 years ago
  85. cc14d25 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 16 years ago
  86. f6dd0eb Use CloneModule's ValueMap to avoid needing to look up by Dan Gohman · 16 years ago
  87. ef0ff14 Fix a bugpoint bug on anonymous functions. Instead of looking up by Dan Gohman · 16 years ago
  88. 283bb58 Add example/Skeleton. by Mikhail Glushenkov · 16 years ago
  89. 03c050f Comment fixes. by Mikhail Glushenkov · 16 years ago
  90. cfa036b Use LLVMLIBS instead of USEDLIBS. by Mikhail Glushenkov · 16 years ago
  91. 178b00c Move example plugins to the example/ directory. by Mikhail Glushenkov · 16 years ago
  92. e9742d2 ENABLE_PIC is either 0 or 1, but is always defined. by Nick Lewycky · 16 years ago
  93. 38efa38 Add a "-gcc-tool-args" option. This option acts like the "-tool-args" option, by Bill Wendling · 16 years ago
  94. 540d73f Move the rules for building plugins to Makefile.rules. by Mikhail Glushenkov · 16 years ago
  95. b14f5b5 Fix build with objdir != srcdir. by Mikhail Glushenkov · 16 years ago
  96. 95e2aa8 Move code from Main.cpp to the include dir. by Mikhail Glushenkov · 16 years ago
  97. f188178 Reorganize llvmc code. by Mikhail Glushenkov · 16 years ago
  98. e3ff456 disable exports from a bunch more tools, those without plugins. by Chris Lattner · 16 years ago
  99. 6b37dcd use TOOL_NO_EXPORTS, this shrinks the llvm-as binary from 1825296 to by Chris Lattner · 16 years ago
  100. a3fd95b Tabs to spaces presto chango! Pointed out by Duncan Sands. by Nick Lewycky · 16 years ago