1. 7f70559 * PIC codegen for X86/Linux has been implemented by Anton Korobeynikov · 19 years ago
  2. 89282b8 This production is dead, the lexer can never return 'NOT' by Chris Lattner · 19 years ago
  3. a54b7cb For PR1064: by Reid Spencer · 19 years ago
  4. 4fe16d6 Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 19 years ago
  5. 6b6b6ef For PR1043: by Zhou Sheng · 19 years ago
  6. 1acc5a4 Make packed structs use packed initialiers for consistency by Andrew Lenharth · 19 years ago
  7. 78d033e For PR411: by Reid Spencer · 19 years ago
  8. 90e2f63 For PR1077: by Reid Spencer · 19 years ago
  9. 2c26178 Change the syntax for parameter attributes: by Reid Spencer · 19 years ago
  10. 539b471 Disallow packed types in icmp/fcmp instructions. The code generator is by Reid Spencer · 19 years ago
  11. b4fdfdb Permit icmp and fcmp to have packed operands. by Reid Spencer · 19 years ago
  12. 98b3c5c Implement checking for unresolved types in the argument types and result by Reid Spencer · 19 years ago
  13. e03969f Remove an extra semi-colon. by Reid Spencer · 19 years ago
  14. 71305d7 Add a missing colon. Noticed by Jeff Cohen. by Reid Spencer · 19 years ago
  15. e1553cc For PR950: by Reid Spencer · 19 years ago
  16. b951bc0 For PR950: by Reid Spencer · 19 years ago
  17. e4d87aa For PR950: by Reid Spencer · 19 years ago
  18. 9ffad0a Allow negative constants for unsigned integers and unsigned constants by Reid Spencer · 19 years ago
  19. 38ecbf1 Packed Structures by Andrew Lenharth · 19 years ago
  20. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  21. af861f1 Remove dead var NewVarArgs. by Reid Spencer · 19 years ago
  22. b775bbc Dump the old va_arg and va_next upgrade support. No need to keep track of by Reid Spencer · 19 years ago
  23. c6e956e Remove various old upgrade hacks that are no longer needed. by Reid Spencer · 19 years ago
  24. 763ed5e For PR950: For ICmp and FCmp constant expressions, put the predicate outiside the parentheses to match what llvm-upgrade generates. by Reid Spencer · 19 years ago
  25. 9b16303 Remove useless #include. by Reid Spencer · 19 years ago
  26. 9f746f4 Shorten the FCmp and ICmp mnemonics to 3 letters. Make the parser by Reid Spencer · 19 years ago
  27. 08de34b Remove backwards compatibility goop. Now implemented in llvm-upgrade. by Reid Spencer · 19 years ago
  28. 78ee7b7 Introducing external weak linkage. Darwin codegen should be added later. by Anton Korobeynikov · 19 years ago
  29. 3e3bcbf Removed #include <iostream> and used llvm streams by Bill Wendling · 19 years ago
  30. b78b908 Implement signedness caching for values, value lists, constants and by Reid Spencer · 19 years ago
  31. 3da59db For PR950: by Reid Spencer · 19 years ago
  32. 36699ca For PR950: by Reid Spencer · 19 years ago
  33. b39a55a Initialize some pointers to quiet the compiler (when doing build_gcc builds). by Bill Wendling · 19 years ago
  34. 3822ff5 For PR950: by Reid Spencer · 19 years ago
  35. 3903369 Fix a bug noticed by Emil Mikulic. by Chris Lattner · 19 years ago
  36. 0a783f7 For PR950: Replace the REM instruction with UREM, SREM and FREM. by Reid Spencer · 19 years ago
  37. 1628cec For PR950: by Reid Spencer · 19 years ago
  38. 2f6a8b1 Removed extraneous semi-colon; this was prevening the grammar file from by John Criswell · 19 years ago
  39. fd6131b Remove unneeded CHECK_FOR_ERROR invocations. by Reid Spencer · 19 years ago
  40. 10b2711 change keyword to datalayout by Chris Lattner · 19 years ago
  41. b83eb64 For PR950: by Reid Spencer · 19 years ago
  42. cf7ff2b Add support for the new "target data" information in .ll files. This provides by Owen Anderson · 19 years ago
  43. 9e76ce9 Produce a useful error message for Regression/Verifier/2006-10-15-AddrLabel.ll by Chris Lattner · 19 years ago
  44. f63697d Fix PR886: by Reid Spencer · 19 years ago
  45. 47811b7 by Chris Lattner · 19 years ago
  46. 5b7e753 Fix PR902: by Reid Spencer · 19 years ago
  47. bcb9770 Added some eye-candy for Subtarget type checking by Anton Korobeynikov · 19 years ago
  48. 93c2b37 Small fixes for supporting dll* linkage types by Anton Korobeynikov · 19 years ago
  49. b74ed07 Adding dllimport, dllexport and external weak linkage types. by Anton Korobeynikov · 19 years ago
  50. 703e92f trivial optimization by Chris Lattner · 19 years ago
  51. e4f4759 Add a comment about the mechanisms used to rid AsmParser of exceptions. by Reid Spencer · 19 years ago
  52. 61c83e0 For PR797: by Reid Spencer · 19 years ago
  53. fd20c0a Fix grammar in a comment. by Reid Spencer · 19 years ago
  54. 515906d Add support for parsing csret by Chris Lattner · 19 years ago
  55. 2d7349a Use isValidOperands instead of duplicating or eliding checks. by Chris Lattner · 19 years ago
  56. ca73cd8 Add insertelement and shufflevector constantexpr support by Chris Lattner · 19 years ago
  57. 4c94908 Parse shufflevector by Chris Lattner · 19 years ago
  58. 7d5c1e1 Don't use invalidated iterators! by Chris Lattner · 19 years ago
  59. aa2c853 Parse inline asm objects by Chris Lattner · 20 years ago
  60. 6631601 Rename method by Chris Lattner · 20 years ago
  61. 71cdba3 syntax change by Chris Lattner · 20 years ago
  62. ee45477 Add support for parsing global asm blocks by Chris Lattner · 20 years ago
  63. e812fb2 Make sure intrinsic auto-upgrade is invoked correctly. by Reid Spencer · 20 years ago
  64. 2def1b3 Lexer and parser support for the insertelement operation. by Robert Bocchino · 20 years ago
  65. 0b11820 For PR411: by Reid Spencer · 20 years ago
  66. 9c62b56 Added lexer and parser support for the extractelement operation. by Robert Bocchino · 20 years ago
  67. 0a01783 allow logical operators on packed integral types by Chris Lattner · 20 years ago
  68. f1f03df Implement Regression/Assembler/2005-12-21-ZeroInitVector.ll by Chris Lattner · 20 years ago
  69. b2b9667 refactor grammar to eliminate shift-reduce conflict. Move alignment checking by Chris Lattner · 20 years ago
  70. 164c378 Parse section info by Chris Lattner · 20 years ago
  71. 9547d7f Force vectors to be a power of two in size by Chris Lattner · 20 years ago
  72. 87ac972 Allow globals to have an alignment specified. Switch to using isPowerOf2_32 by Chris Lattner · 20 years ago
  73. 66db8e4 factor optional alignment by Chris Lattner · 20 years ago
  74. ac6e5c1 Verify that alignment amounts are a power of 2 by Chris Lattner · 20 years ago
  75. 14b0529 Add support alignment of allocation instructions. by Nate Begeman · 20 years ago
  76. 66c5fd6 When a function takes a variable number of pointer arguments, with a zero by Jeff Cohen · 20 years ago
  77. 548021f Fix grammar by Chris Lattner · 20 years ago
  78. 213e557 If we support structs as va_list, we must pass pointers to them to va_copy by Andrew Lenharth · 20 years ago
  79. 31c98bf because some functions just use va_start and pass things to vfprintf by Andrew Lenharth · 20 years ago
  80. 017fba9 va_end fix by Andrew Lenharth · 20 years ago
  81. e78f50d add a check for the mixing of vaarg and vanext with va_arg by Andrew Lenharth · 20 years ago
  82. 558bc88 core changes for varargs by Andrew Lenharth · 20 years ago
  83. 6184feb Give the asmparser the ability to parse strings. Patch contributed by by Chris Lattner · 20 years ago
  84. 5a2a382 * Convert tabs to spaces, fix code alignment by Misha Brukman · 20 years ago
  85. a8e8f16 parse new calling conv specifiers by Chris Lattner · 20 years ago
  86. f924a4c use splice instead of remove/insert for a minor speedup by Chris Lattner · 20 years ago
  87. 1f64025 remove some ugly hacks that are no longer needed since andrew removed the by Chris Lattner · 20 years ago
  88. ddb6db4 Add a 'tail' marker for call instructions, patch contributed by by Chris Lattner · 20 years ago
  89. abc73b3 Remove support for 1.0 style varargs by Andrew Lenharth · 20 years ago
  90. 60cd955 don't crash in some bad cases. by Chris Lattner · 20 years ago
  91. 355ad1f Remove a bunch of cruft and dead code for handling the case when types were by Chris Lattner · 20 years ago
  92. e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 20 years ago
  93. 262bb9a zap by Chris Lattner · 20 years ago
  94. 69331f5 add more checking by Chris Lattner · 20 years ago
  95. 83beacd Do not read free'd memory when printing an error message. by Chris Lattner · 20 years ago
  96. a08976b C++ is not a functional programming language. by Chris Lattner · 20 years ago
  97. 595f06c Fix test/Regression/Assembler/2005-01-31-CallingAggregateFunction.ll by Chris Lattner · 21 years ago
  98. ce1df9e Adjust to slight changes in instruction interfaces. by Chris Lattner · 21 years ago
  99. 6d8dbec Add support for compilers with arg dependent name lookup, contributed by by Chris Lattner · 21 years ago
  100. 9f9b3ac For PR409: \ by Reid Spencer · 21 years ago