1. d94a50f Clean up code dealing with RTLD_SELF differences on Sparc and X86. by Misha Brukman · 21 years ago
  2. df38dae Fix reference to architecture. by Misha Brukman · 21 years ago
  3. 248ea32 Add in support to load shared objects (-load is provided by Support library). by Misha Brukman · 21 years ago
  4. 686e65f Removed extra parenthesis and fixed spelling. by Misha Brukman · 21 years ago
  5. ebb20c5 Need to include <string> to fix compile error on Sun by Tanya Lattner · 21 years ago
  6. 38b8979 Specify the value type for the register, not just the size. by Chris Lattner · 21 years ago
  7. b3aa319 Instead of specifying the SIZE of the register, go so far as to specify by Chris Lattner · 21 years ago
  8. 2e72454 Add support for Set statements without {}'s. Now we can just say by Chris Lattner · 21 years ago
  9. ce3d640 Allow initializing variable initializers with variables by Chris Lattner · 21 years ago
  10. 6991046 Somehow "simplest" test became a hello world test. Rectify this. by Chris Lattner · 21 years ago
  11. d281de2 Rename function to be more consistent with filename by Chris Lattner · 21 years ago
  12. 1194e95 Code generation phases are not allowed to modify the LLVM representation. by Chris Lattner · 21 years ago
  13. 8d3f8e2 Making this code const-correct would be a pain, so I'll hack it. by Chris Lattner · 21 years ago
  14. 9e2dd8f Const correctness fixes by Chris Lattner · 21 years ago
  15. 9cdaa63 Be const correct by Chris Lattner · 21 years ago
  16. e5a61cc Hrm, another necesary one :( by Chris Lattner · 21 years ago
  17. 70534ee Whoops, this one was needed by Chris Lattner · 21 years ago
  18. dee1263 We don't modify the LLVM rep, remain const correct by Chris Lattner · 21 years ago
  19. 2a865b0 If the pass changes _anything_ it must return true by Chris Lattner · 21 years ago
  20. 6856d11 This code doesn't modify the LLVM structure, keep stuff const by Chris Lattner · 21 years ago
  21. 1d598fa Remove #include by Chris Lattner · 21 years ago
  22. bae47e5 Remove extraneous #includes by Chris Lattner · 21 years ago
  23. 1f2bbaa Fix another minor bug by Chris Lattner · 21 years ago
  24. 869ff9e Remove #includes by Chris Lattner · 21 years ago
  25. 919937d Simplify some makefile magic, no functional changes by Chris Lattner · 21 years ago
  26. d6f1537 Add fixmes by Chris Lattner · 21 years ago
  27. 7dc7de5 (1) Major fix to the way unused regs. are marked and found for the FP by Vikram S. Adve · 21 years ago
  28. 8d6b9fe This test has been automatized by Chris Lattner · 21 years ago
  29. 4446617 Update to use more modern graph checker by Chris Lattner · 21 years ago
  30. 6235b2a New testcase, an automatized version of Vikrams ggcollapse.c file by Chris Lattner · 21 years ago
  31. e9a567c 1. Fix a case that was marking the invalid reg. num. (-1) as used, by Vikram S. Adve · 21 years ago
  32. bc001b2 (1) Change the way unused regs. are marked and found to consider regType by Vikram S. Adve · 21 years ago
  33. 523eb3f Change the way unused regs. are marked and found to consider regType by Vikram S. Adve · 21 years ago
  34. 34a8567 Remove unused field. Change the way unused regs. are marked and by Vikram S. Adve · 21 years ago
  35. b1e6f05 Add an assertion. by Vikram S. Adve · 21 years ago
  36. 1e4bed7 Remove testcase which has been automatized by Chris Lattner · 21 years ago
  37. e41fb36 Checkin of Vikram's ggfuncptr.c test adapted for automatic checking by Chris Lattner · 21 years ago
  38. e7e221a Dont' try to parse the colon by Chris Lattner · 21 years ago
  39. f2d0134 Add a more general check-flags which can be used to ensure arbitrary flags are set by Chris Lattner · 21 years ago
  40. 6b902dc Include llvm/Support/Mangler.h first. Don't include <iostream>, <set>, by Brian Gaeke · 21 years ago
  41. 49a178b Don't include llvm/SlotCalculator.h, or <set>. by Brian Gaeke · 21 years ago
  42. 00fee61 Forward-declare class Module to make the header file self-contained. by Brian Gaeke · 21 years ago
  43. 2e99791 More cassert inclusion for GCC 3.3 by Chris Lattner · 21 years ago
  44. a731307 Change reference to assert.h to mention cassert by Chris Lattner · 21 years ago
  45. 09cea35 Brian implemented the static compiler, take it off the list by Chris Lattner · 21 years ago
  46. be67780 #include <cassert> as necessary... by Chris Lattner · 21 years ago
  47. 02a31a5 Fix another accessibility problem illuminated by GCC 3.3 by Chris Lattner · 21 years ago
  48. d091d85 Fix visibility problem exposed by GCC 3.3 by Chris Lattner · 21 years ago
  49. 0192e36 Remove inline declarations that GCC 3.3 doesn't like without a body by Chris Lattner · 21 years ago
  50. ceef97a Regardless of whether C provides assert.h, C++ source can always include by Chris Lattner · 21 years ago
  51. d957518 Use the C++ <cassert> header, not the C <assert.h> header by Chris Lattner · 21 years ago
  52. b1512d2 This header works with GCC 3.3 by Chris Lattner · 21 years ago
  53. b5b3c6f Use C++ headers, not C headers by Chris Lattner · 21 years ago
  54. a44a4cd Add includes of assert by Chris Lattner · 21 years ago
  55. 32862da Fix accessibility problems GCC 3.3 by Chris Lattner · 21 years ago
  56. ab63bd1 Add assert.h include by Chris Lattner · 21 years ago
  57. 9c37f9c Convert to C++ style comments by Chris Lattner · 21 years ago
  58. 7f90b52 Include vector into these two files to ensure that specializations like by Vikram S. Adve · 21 years ago
  59. a259c9b Made a bunch of cleanups, as per Chris' recommendations: by Misha Brukman · 21 years ago
  60. 4166445 Cleanups: by Brian Gaeke · 21 years ago
  61. b198ca3 Factor out name-mangling from X86/Printer, which is derived from CWriter, by Brian Gaeke · 21 years ago
  62. d9fb37a Use unified CWriter-X86/Printer name mangler. Do not bother using by Brian Gaeke · 21 years ago
  63. 12642fd More testcases, which I'll implement later by Chris Lattner · 21 years ago
  64. d2a0896 Modernize testcase by Chris Lattner · 21 years ago
  65. b5874f1 New testcase by Chris Lattner · 21 years ago
  66. 943c713 Instcombine: (A >> c1) << c2 for signed integers by Chris Lattner · 21 years ago
  67. 709ad40 New testcases for signed shifts by Chris Lattner · 21 years ago
  68. 5073336 Major addition to bugpoint: ability to debug code generators (LLC and LLI). by Misha Brukman · 21 years ago
  69. 08fd7ab Reorganization of code, no functional changes. by Chris Lattner · 21 years ago
  70. 3d8d9f7 It doesn't appear that we need to #include these. by Brian Gaeke · 21 years ago
  71. 24c8e38 Allow folding several instructions into casts, which can simplify a lot by Chris Lattner · 21 years ago
  72. 8baa92e Minor cleanups by Chris Lattner · 21 years ago
  73. b3011a0 Constify most methods. We could have constified doInitialization and by Brian Gaeke · 21 years ago
  74. c3c1d32 Disable sample project until it works by Chris Lattner · 21 years ago
  75. 84f644a Add new tests, make existing tests more difficult by Chris Lattner · 21 years ago
  76. 1078d11 Fix bug: FunctionResolve/2003-07-23-CPR-Reference.ll by Chris Lattner · 21 years ago
  77. a99d4f2 New testcase by Chris Lattner · 21 years ago
  78. 2cd9196 Add comments by Chris Lattner · 21 years ago
  79. eca0c5c Remove explicit check for: not (not X) = X, it is already handled because xor is commutative by Chris Lattner · 21 years ago
  80. ae623cb New testcases by Chris Lattner · 21 years ago
  81. c2a2e73 Renumber tests sequentially by Chris Lattner · 21 years ago
  82. f852798 Split the or and xor tests into two separate files by Chris Lattner · 21 years ago
  83. 2fc5e59 Remove obscure test by Chris Lattner · 21 years ago
  84. 2c77cb9 Check in old testcase sitting in my tree by Chris Lattner · 21 years ago
  85. d4e8d31 Fix program: SingleSource/UnitTests/2003-07-09-SignedArgs with the CBE by Chris Lattner · 21 years ago
  86. de420ae Printer.cpp: Ditch addRequired/getAnalysis, because they leave by Brian Gaeke · 21 years ago
  87. b6ede8a Make Module::getNamedFunction prefer non-external functions if there is more than by Chris Lattner · 21 years ago
  88. a84983e Fix space by Chris Lattner · 21 years ago
  89. 06782f8 InstCombine: (X ^ C1) & C2 --> (X & C2) iff (C1&C2) == 0 by Chris Lattner · 21 years ago
  90. 4daaebf New testcase by Chris Lattner · 21 years ago
  91. 5840326 - InstCombine: (X | C1) & C2 --> X & C2 iff C1 & C1 == 0 by Chris Lattner · 21 years ago
  92. b5cfb6c New testcase by Chris Lattner · 21 years ago
  93. 0afcd44 New testcase by Chris Lattner · 21 years ago
  94. 92bdfe6 Add, rewrite, and/or reformat many comments. by Brian Gaeke · 21 years ago
  95. ad44ebf IC: (X & C1) | C2 --> (X | C2) & (C1|C2) by Chris Lattner · 21 years ago
  96. 31a7f85 New testcases by Chris Lattner · 21 years ago
  97. c6a8aff IC: (X ^ C1) & C2 --> (X & C2) ^ (C1&C2) Minor code cleanup by Chris Lattner · 21 years ago
  98. 2b8e478 New testcase by Chris Lattner · 21 years ago
  99. 00b1a7e InstCombine: (X ^ 4) == 8 --> X == 12 by Chris Lattner · 21 years ago
  100. 347319a New testcase by Chris Lattner · 21 years ago