Skip to content
  1. Oct 27, 2009
  2. Oct 26, 2009
  3. Oct 25, 2009
  4. Oct 24, 2009
  5. Oct 23, 2009
  6. Oct 22, 2009
  7. Oct 21, 2009
    • Victor Hernandez's avatar
      Make changes to rev 84292 as requested by Chris Lattner. · be9e1791
      Victor Hernandez authored
      Most changes are cleanup, but there is 1 correctness fix:
      I fixed InstCombine so that the icmp is removed only if the malloc call is removed (which requires explicit removal because the Worklist won't DCE any calls since they can have side-effects).
      
      llvm-svn: 84772
      be9e1791
    • Torok Edwin's avatar
      Fix PR5262: when folding select into PHI, make sure all operands are available · 1539a352
      Torok Edwin authored
      in the PHI's Basic Block. This uses a conservative approach, because we don't
      have dominator info in instcombine.
      
      llvm-svn: 84754
      1539a352
    • Chris Lattner's avatar
      make GVN work better when TD is not around: · 8ed7bef4
      Chris Lattner authored
      "In the existing code, if the load and the value to replace it with are
      of different types *and* target data is available, it tries to use the
      target data to coerce the replacement value to the type of the load.
      Otherwise, it skips all effort to handle the type mismatch and just
      feeds the wrongly-typed replacement value to replaceAllUsesWith, which
      triggers an assertion.
      
      The patch replaces it with an outer if checking for type mismatch, and
      an inner if-else that checks whether target data is available and, if
      not, returns false rather than trying to replace the load."
      
      Patch by Kenneth Uildriks!
      
      llvm-svn: 84739
      8ed7bef4
    • Devang Patel's avatar
      Do not remove dead metadata for now. · 1d7f7d21
      Devang Patel authored
      llvm-svn: 84731
      1d7f7d21
  8. Oct 20, 2009
Loading