Skip to content
  1. Oct 11, 2010
  2. Oct 04, 2010
  3. Sep 28, 2010
  4. Sep 24, 2010
  5. Sep 07, 2010
    • Nick Lewycky's avatar
      Add a new isSignWrappedSet() method to ConstantRange. · a35462da
      Nick Lewycky authored
      Fix zeroExtend and signExtend to support empty sets, and to return the smallest
      possible result set which contains the extension of each element in their
      inputs. For example zext i8 [100, 10) to i16 is now [0, 256), not i16 [100, 10)
      which contains 63446 members.
      
      llvm-svn: 113187
      a35462da
  6. Sep 01, 2010
  7. Aug 12, 2010
    • Nick Lewycky's avatar
      Clean up ConstantRange a bit: · d385c22c
      Nick Lewycky authored
       - remove ashr which never worked.
       - fix lshr and shl and add tests.
       - remove dead function "intersect1Wrapped".
       - add a new sub method to subtract ranges, with test.
      
      llvm-svn: 110861
      d385c22c
  8. Aug 07, 2010
  9. Jul 22, 2010
  10. Jul 20, 2010
  11. Mar 17, 2010
  12. Mar 01, 2010
  13. Feb 17, 2010
  14. Feb 09, 2010
  15. Jan 22, 2010
    • Torok Edwin's avatar
      Fix TimeValue::now() on Unix. · fbcd2c76
      Torok Edwin authored
      TimeValue()::now().toEpochTime() is supposed to be the same as time(),
      but it wasn't, because toEpoch subtracted PosixZeroTime, but now()
      didn't add PosixZeroTime!
      Add a unittest to check this works.
      
      llvm-svn: 94178
      fbcd2c76
  16. Dec 18, 2009
  17. Oct 27, 2009
  18. Oct 17, 2009
  19. Oct 12, 2009
  20. Oct 06, 2009
  21. Sep 26, 2009
  22. Sep 25, 2009
  23. Sep 24, 2009
  24. Sep 15, 2009
  25. Sep 09, 2009
  26. Sep 06, 2009
  27. Sep 05, 2009
  28. Aug 30, 2009
  29. Aug 24, 2009
  30. Aug 23, 2009
    • Daniel Dunbar's avatar
      Fix off-by-one in llvm::Format::print. · 47a309c5
      Daniel Dunbar authored
       - This also shortens the Format.h implementation, and uses the print buffer
         fully (it was wasting a character).
      
       - This manifested as llvm-test failures, because one side effect was that
         raw_ostream would write garbage '\x00' values into the output stream if it
         happened that the string was at the end of the buffer. This meant that grep
         would report 'Binary file matches', which meant the silly pattern matching
         llvm-test eventually does would fail. Cute. :)
      
      llvm-svn: 79862
      47a309c5
    • Chris Lattner's avatar
      convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since · dbbdc792
      Chris Lattner authored
      ConstantRange doesn't have an std::ostream inserter anymore.
      
      llvm-svn: 79831
      dbbdc792
Loading