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