Skip to content
  1. Jan 05, 2010
  2. Jan 04, 2010
  3. Jan 03, 2010
  4. Jan 02, 2010
    • Chris Lattner's avatar
      Teach codegen to handle: · 1eea3b0a
      Chris Lattner authored
       (X != null) | (Y != null) --> (X|Y) != 0
       (X == null) & (Y == null) --> (X|Y) == 0
      
      so that instcombine can stop doing this for pointers.  This is part of PR3351,
      which is a case where instcombine doing this for pointers (inserting ptrtoint)
      is pessimizing code.
      
      llvm-svn: 92406
      1eea3b0a
    • Chris Lattner's avatar
      whitespace cleanup · 24576a5c
      Chris Lattner authored
      llvm-svn: 92404
      24576a5c
  5. Jan 01, 2010
  6. Dec 29, 2009
Loading