1. 83eaae1 Remove a duplicative binding. Patch by Mahadevan R. by Gordon Henriksen · 16 years ago
  2. 83296ca Update VS project files (VS 2005) so that VS builds with TOT LLVM/clang. by Ted Kremenek · 16 years ago
  3. 40da626 Grammar fix. by Bill Wendling · 16 years ago
  4. 6acc859 Delete module. by Bill Wendling · 16 years ago
  5. 176e829 Convert non-ASCII apostrophes into ASCII apostrophes. by Bill Wendling · 16 years ago
  6. d63729f Delete the Module object. by Bill Wendling · 16 years ago
  7. c8968d9 s/insure/ensure/ by Bill Wendling · 16 years ago
  8. 3d738ca ignore Output dir by Gabor Greif · 16 years ago
  9. 1d6e409 Teach GVN to not assert on vector comparisons by Nate Begeman · 16 years ago
  10. f44085a Fix a backwards check in the JIT symbol table code by Nate Begeman · 16 years ago
  11. 68d2d2f add missing #include. by Chris Lattner · 16 years ago
  12. 47c9909 Fix PR2339 by Chris Lattner · 16 years ago
  13. 98f41d2 remove empty file? by Chris Lattner · 16 years ago
  14. 08de1e4 Revert constant-folding change that will miscompile in some cases. by Nick Lewycky · 16 years ago
  15. b578310 trip count computation deficiency by Chris Lattner · 16 years ago
  16. fbaa379 On Darwin, the string header file isn't 64-bit clean. The use of by Bill Wendling · 16 years ago
  17. 6cccce3 Unbreak the build. by Nick Lewycky · 16 years ago
  18. d24ae87 Constant fold inttoptr and ptrtoint. by Nick Lewycky · 16 years ago
  19. fc1efbb Move isTrueWhenEqual to ICmpInst. by Nick Lewycky · 16 years ago
  20. 1f7580c Less conservative verison of previous patch, suggested by Duncan. by Dale Johannesen · 16 years ago
  21. 6a6f2dd Add CommonLinkage, in a way that preserves the behavior on old .bc files. by Dale Johannesen · 16 years ago
  22. 7d5633e Add CommonLinkage to lto (treated same as weak AFAICT) by Dale Johannesen · 16 years ago
  23. c9b0aa7 Add CommonLinkage. by Dale Johannesen · 16 years ago
  24. 6796629 Weak functions not declared non-throwing might be by Dale Johannesen · 16 years ago
  25. 0bf7b41 Add functions to enable adding a single attribute to a function and by Eric Christopher · 16 years ago
  26. ea7dd40 Record weak external linkage in a case where we were by Dale Johannesen · 16 years ago
  27. 7cbd8a3 API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legacy interfaces will be in place for some time. (Merge from use-diet branch.) by Gabor Greif · 16 years ago
  28. 446efdd If the result of a BIT_CONVERT is a v1* vector, it doesn't mean its source is a v1* vector. by Evan Cheng · 16 years ago
  29. 62df5c9 Fix test. by Evan Cheng · 16 years ago
  30. 1a2d667 Bill pointed out that system headers should be included after local headers. by Duncan Sands · 16 years ago
  31. 419cafb Silence the compiler warning differently. The by Duncan Sands · 16 years ago
  32. df04572 Re-enable tail duplication pass (now with default threshold down to 1 instruction). by Evan Cheng · 16 years ago
  33. 66ae104 Do not dup malloc, vector instructions, etc. Throttle the default theshold way down. by Evan Cheng · 16 years ago
  34. 62849be Remove ADCE's ability to delete loops. This ability is now implemented in a by Owen Anderson · 16 years ago
  35. 3dc73d3 Move this test from ADCE to loop deletion, where it is more appropriate. by Owen Anderson · 16 years ago
  36. ce12a2b Use loop deletion instead of ADCE in these tests. by Owen Anderson · 16 years ago
  37. 0db198d Clean ups for loop deletion based on Chris' feedback. by Owen Anderson · 16 years ago
  38. d870b9a Use loop deletion instead of ADCE for removing loops. by Owen Anderson · 16 years ago
  39. 90d2736 Fix this test. It was testing broken behavior in that it required ADCE to eliminate by Owen Anderson · 16 years ago
  40. b2ae9e3 implement PR2328. by Chris Lattner · 16 years ago
  41. e44b1bd Use common where we mean common, not weak. by Dale Johannesen · 16 years ago
  42. f88c81e Treat common as distinct from weak global on Darwin x86. by Dale Johannesen · 16 years ago
  43. eedff31 Revert the change from r51157 in by Dan Gohman · 16 years ago
  44. e2d896f Update comments based on Duncan's feedback. by Dan Gohman · 16 years ago
  45. f20d70d Fix a bug in LoopStrengthReduce that caused it to emit IR with by Dan Gohman · 16 years ago
  46. 7d75b3a Remove the S92 code, which really has nothing to do by Dale Johannesen · 16 years ago
  47. e31d874 Evan has implemented this on ppc, so run the test there. by Dale Johannesen · 16 years ago
  48. 0ef8de3 Fix typos and comments. by Evan Cheng · 16 years ago
  49. 6667646 Allow an extra bit for CommonLinkage. by Dale Johannesen · 16 years ago
  50. b434513 Actually scalarize the operand to BIT_CONVERT instead of asking someone to do by Nate Begeman · 16 years ago
  51. 20a3ca6 Reverting r51100...I need to use VC++ 2005. by Steve Naroff · 16 years ago
  52. 041e2eb IR support for extractvalue and insertvalue instructions. Also, begin by Dan Gohman · 16 years ago
  53. d208a80 Use static and anonymous namespaces consistently with other passes. by Dan Gohman · 16 years ago
  54. 0c87f2d Revert 51067 check-in for now. by Devang Patel · 16 years ago
  55. 8dbd9ad Remove useless check. Patch by Matthijs Kooijman. by Devang Patel · 16 years ago
  56. bdb6ca1 Disable JIT symbol table for now. by Evan Cheng · 16 years ago
  57. 9c0d50e Use of UINT_MAX requires climits, at least when compiling with gcc 4.3. by Duncan Sands · 16 years ago
  58. b1dbcd8 Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. by Gabor Greif · 16 years ago
  59. 4054ae0 ignore generated files and product directories by Gabor Greif · 16 years ago
  60. f0df031 Make use of vector load and store operations to implement memcpy, memmove, and memset. Currently only X86 target is taking advantage of these. by Evan Cheng · 16 years ago
  61. 38503d4 Remove tail duplication pass. by Evan Cheng · 16 years ago
  62. ff155f03 Move the operator new and operator delete out of line. This fixes an issue with by Nate Begeman · 16 years ago
  63. 386f3e9 Don't assume underlying APInt type is limited to 64 bits. by Dale Johannesen · 16 years ago
  64. a6c3112 Situations can arise when you have a function called that returns a 'void', but by Bill Wendling · 16 years ago
  65. 6a33cc1 Remove undefined behavior in hex string->APFloat by Dale Johannesen · 16 years ago
  66. 97e60d9 Use a better idiom to silence compiler warnings. by Evan Cheng · 16 years ago
  67. 4186ad5 rename SimplifyCFG.cpp -> SimplifyCFGPass.cpp by Chris Lattner · 16 years ago
  68. bb60674 Silence warnings. by Evan Cheng · 16 years ago
  69. 0342049 Add support to IR builder for new vicmp, vfcmp routines by Nate Begeman · 16 years ago
  70. 3521334 Really silence compiler warnings. by Evan Cheng · 16 years ago
  71. 31cd33a Don't generate unused variables in a no-assert build by Nate Begeman · 16 years ago
  72. b203114 Really silence compiler warnings. by Evan Cheng · 16 years ago
  73. 40e829f CommonLinkage (missed a file) by Dale Johannesen · 16 years ago
  74. c7071cc Generated files for CommonLinkage. by Dale Johannesen · 16 years ago
  75. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 16 years ago
  76. 5087124 Silence some compiler warnings. by Evan Cheng · 16 years ago
  77. ef3682a Simplify internalize pass. Add test case. Patch by Matthijs Kooijman! by Devang Patel · 16 years ago
  78. d64a78c When bit-twiddling CondCode values for integer comparisons produces by Dan Gohman · 16 years ago
  79. 8ffe2e2 Recover nestedloop regression reported by nightly tester. by Devang Patel · 16 years ago
  80. 969c9d3 Check if llvm-gcc is available before running tests. Patch by Matthijs Kooijman! by Tanya Lattner · 16 years ago
  81. 2010b3e Detabification. Fixed indentation and spacing. by Sanjiv Gupta · 16 years ago
  82. 6422e8a Do not generate by TableGen the hard-coded standard, target-independent part of by Roman Levenstein · 16 years ago
  83. 4663c94 Upgrading clang VC++ solution to VC++ express 2008. by Argyrios Kyrtzidis · 16 years ago
  84. 972378a Make this test pass on x86-32 linux. by Duncan Sands · 16 years ago
  85. ca8f325 Adding missing files to Transforms and VMCore VC++ projects. by Argyrios Kyrtzidis · 16 years ago
  86. 9097d14 Add documentation for tail call optimization to CodeGenerator.html. Add a link by Arnold Schwaighofer · 16 years ago
  87. e3f3428 Added configure switches for PIC16 in configure.ac. Regenerated configure. by Sanjiv Gupta · 16 years ago
  88. 9474ede Fix typo in ParameterAttribute fields usage. Add an include by Nicolas Geoffray · 16 years ago
  89. 2d4e7f7 Fixed the file description header at the top to remove the developer name. by Sanjiv Gupta · 16 years ago
  90. 816cdf6 Commit the header I accidentally left out of 51083. by Dan Gohman · 16 years ago
  91. 6bf8770 Doh. Alignment is in bytes, not in bits. by Evan Cheng · 16 years ago
  92. c9f5f3f Change target-specific classes to use more precise static types. by Dan Gohman · 16 years ago
  93. 1d5562f Move RemoveFromVector out of the global namespace. by Dan Gohman · 16 years ago
  94. 9c78a39 Whitespace cleanups. by Dan Gohman · 16 years ago
  95. 4d9dd6b Make PreVerifyID, IntSigsEnd, and KillSigsEnd const. by Dan Gohman · 16 years ago
  96. 5d9bac6 Make getNumContainedManagers and getNumContainedPasses const. by Dan Gohman · 16 years ago
  97. 79fc202 Make PassInfo noncopyable. by Dan Gohman · 16 years ago
  98. 81a1d08 Do not run instruction combiner in middle of loop optimization passes. by Devang Patel · 16 years ago
  99. 45b3197 Split the loop unroll mechanism logic out into a utility function. by Dan Gohman · 16 years ago
  100. c4f406e Fix Analysis/BasicAA/pure-const-dce.ll. This turned out to be a correctness by Owen Anderson · 16 years ago