1. 606a1d1 Remove the InlineHint attribute. There are no current or planned users. by Eric Christopher · 15 years ago
  2. 1d92831 rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest of the code. by Chris Lattner · 15 years ago
  3. e434d27 rename lltok::Metadata -> lltok::exclaim. We name tokens by Chris Lattner · 15 years ago
  4. 211a14e Add MSP430 interrupt calling conv. No functionality change yet. by Anton Korobeynikov · 15 years ago
  5. 09d9ef4 full asmparser support for blockaddress. We can now do: by Chris Lattner · 15 years ago
  6. ab21db7 rename indbr -> indirectbr to appease the residents of #llvm. by Chris Lattner · 15 years ago
  7. f9be95f add enough support for indirect branch for the feature test to pass by Chris Lattner · 15 years ago
  8. 046e78c Remove FreeInst. by Victor Hernandez · 15 years ago
  9. 8ba2d5b Rename msasm to alignstack per review. by Dale Johannesen · 15 years ago
  10. cf4d2f1 add some fixme's by Chris Lattner · 15 years ago
  11. 13ad5aa Autoupgrade malloc insts to malloc calls. by Victor Hernandez · 15 years ago
  12. 4360298 Add an "msasm" flag to inline asm as suggested in PR 5125. by Dale Johannesen · 15 years ago
  13. 0475c91 Parse custom metadata attached with an instruction. by Devang Patel · 15 years ago
  14. 3e0c99a Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it causes regressions in the nightly tests. by Victor Hernandez · 15 years ago
  15. 96b930d Auto-upgrade malloc instructions to malloc calls. by Victor Hernandez · 15 years ago
  16. cea188a Parse debug info attached with an instruction. by Devang Patel · 15 years ago
  17. de86d47 Add an 'inline hint' attribute to represent source by Dale Johannesen · 15 years ago
  18. bcef7df Fix the build with gcc-4.4 on linux: header needed for EOF. by Duncan Sands · 15 years ago
  19. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
  20. 689ad6e Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef. by Daniel Dunbar · 15 years ago
  21. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  22. eff2ab6 Parse named metadata. by Devang Patel · 15 years ago
  23. dd8004d Add a new keyword 'inbounds' for use with getelementptr. See the by Dan Gohman · 15 years ago
  24. 08d012e Rename the new unsigned and signed keywords to nuw and nsw, by Dan Gohman · 15 years ago
  25. 1224c38 Assembly and Bitcode support for unsigned/signed overflow flags and by Dan Gohman · 15 years ago
  26. 3d10a5a Add plumbing for the `linker_private' linkage type. This type is meant for by Bill Wendling · 15 years ago
  27. c5ec8a7 Add support for naked functions by Anton Korobeynikov · 15 years ago
  28. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
  29. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 15 years ago
  30. 7f6aa2b Remove the vicmp and vfcmp instructions. Because we never had a release with by Nick Lewycky · 15 years ago
  31. ff6c91e Use LLVMContext in the LLLexer. by Owen Anderson · 15 years ago
  32. eeb4a84 switch the .ll parser to use SourceMgr. by Chris Lattner · 15 years ago
  33. 92bcb42 switch the .ll parser into SMDiagnostic. by Chris Lattner · 15 years ago
  34. 385f5a9 Address review comments: add 3 ARM calling conventions. by Anton Korobeynikov · 15 years ago
  35. 578efa9 Add new function attribute - noimplicitfloat by Devang Patel · 15 years ago
  36. ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 15 years ago
  37. d18e31a Add new function attribute - noredzone. by Devang Patel · 15 years ago
  38. 7a0370f Give embedded metadata its own type instead of relying on EmptyStructTy. by Nick Lewycky · 15 years ago
  39. 266c7bb Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
  40. 21cc446 Add support for embedded metadata to LLVM. This introduces two new types of by Nick Lewycky · 16 years ago
  41. 1b25cb2 Fix internal representation of fp80 to be the by Dale Johannesen · 16 years ago
  42. 4dc2b39 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 16 years ago
  43. 5f4ee1f Remove the one-definition-rule version of extern_weak by Duncan Sands · 16 years ago
  44. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  45. bb46f52 Add the private linkage. by Rafael Espindola · 16 years ago
  46. 5679d18 Alphabetized #includes. by Misha Brukman · 16 years ago
  47. 9ea4034 Down with trailing whitespace! by Misha Brukman · 16 years ago
  48. a896176 add a #include to hopefully get the x86-64-linux buildbot building. by Chris Lattner · 16 years ago
  49. df98617 Reimplement the old and horrible bison parser for .ll files with a nice by Chris Lattner · 16 years ago
  50. 73ddd4f Commit missed files from nocapture change. by Nick Lewycky · 16 years ago
  51. 6fa311c Temporarily revert r61019, r61030, and r61040. These were breaking LLVM Release by Bill Wendling · 16 years ago
  52. e642658 Introducing nocapture, a parameter attribute for pointers to indicate that the by Nick Lewycky · 16 years ago
  53. e9e6bdf Implement stack protectors as function attributes: "ssp" and "sspreq". by Bill Wendling · 16 years ago
  54. 2c9c3e7 Implement function notes as function attributes. by Devang Patel · 16 years ago
  55. 86098bd Add "inreg" field to CallSDNode (doesn't increase by Dale Johannesen · 16 years ago
  56. 52e89dd Parse and print opt_size note. by Devang Patel · 16 years ago
  57. d498081 Parse function notes. by Devang Patel · 16 years ago
  58. 7dc00ab Add read/write support for X86's sseregparm. by Dale Johannesen · 16 years ago
  59. fc74abf Enable first-class aggregates support. by Dan Gohman · 16 years ago
  60. e4977cf Make structs and arrays first-class types, and add assembly by Dan Gohman · 16 years ago
  61. fdfef0d Recognize the "default" keyword, which is documented in LangRef.html by Dan Gohman · 16 years ago
  62. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 16 years ago
  63. ac80ade Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRef by Nate Begeman · 16 years ago
  64. 280a6e6 Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 by Nick Lewycky · 17 years ago
  65. 9be3c97 Turn unwind_to into "unwinds to". by Nick Lewycky · 17 years ago
  66. fc82fab Add an unwind_to field to basic blocks, making them Users instead of Values. by Nick Lewycky · 17 years ago
  67. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
  68. d6ffcf9 Parse %b = getresult {i32, i32} %a, i32 1 by Devang Patel · 17 years ago
  69. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  70. 2c6fd8c Remove spurious warnings from GCC: by Bill Wendling · 17 years ago
  71. fe63fb9 Implement address space attribute for LLVM pointer types. Address spaces are by Christopher Lamb · 17 years ago
  72. 80a75bf Adding a collector name attribute to Function in the IR. These by Gordon Henriksen · 17 years ago
  73. d185f64 add #include by Chris Lattner · 17 years ago
  74. ed4a2f1 Rename the 'const' parameter attribute to 'readnone', by Duncan Sands · 17 years ago
  75. 4ce0df6 autoupgrade files that use callfoo as call foo. by Chris Lattner · 17 years ago
  76. d343c6b Bugfix, this fixes CodeGen/X86/ldzero.ll and CodeGen/X86/2007-10-16-fp80_select.ll by Chris Lattner · 17 years ago
  77. 8e3a8e0 Replace the original flex lexer with a hand writen one. This by Chris Lattner · 17 years ago