Skip to content
  1. Oct 27, 2009
  2. Oct 23, 2009
  3. Oct 21, 2009
    • 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
  4. Oct 20, 2009
  5. Oct 19, 2009
  6. Oct 14, 2009
  7. Oct 11, 2009
  8. Oct 10, 2009
  9. Sep 27, 2009
  10. Sep 21, 2009
  11. Sep 20, 2009
  12. Sep 19, 2009
  13. Sep 03, 2009
  14. Sep 02, 2009
  15. Aug 27, 2009
  16. Aug 13, 2009
  17. Jul 31, 2009
  18. Jul 25, 2009
  19. Jul 22, 2009
  20. Jul 21, 2009
  21. Jul 14, 2009
  22. Jul 11, 2009
    • Torok Edwin's avatar
      assert(0) -> LLVM_UNREACHABLE. · 56d06597
      Torok Edwin authored
      Make llvm_unreachable take an optional string, thus moving the cerr<< out of
      line.
      LLVM_UNREACHABLE is now a simple wrapper that makes the message go away for
      NDEBUG builds.
      
      llvm-svn: 75379
      56d06597
  23. Jul 10, 2009
  24. Jul 08, 2009
  25. Jul 03, 2009
Loading