Skip to content
  1. Dec 18, 2012
    • Jakob Stoklund Olesen's avatar
      Add an assertion for a likely ilist::splice() contract violation. · b8d29bf2
      Jakob Stoklund Olesen authored
      The single-element ilist::splice() function supports a noop move:
      
        List.splice(I, List, I);
      
      The corresponding std::list function doesn't allow that, so add a unit
      test to document that behavior.
      
      This also means that
      
        List.splice(I, List, F);
      
      is somewhat surprisingly not equivalent to
      
        List.splice(I, List, F, next(F));
      
      This patch adds an assertion to catch the illegal case I == F above.
      Alternatively, we could make I == F a legal noop, but that would make
      ilist differ even more from std::list.
      
      llvm-svn: 170443
      b8d29bf2
  2. Dec 17, 2012
  3. Dec 12, 2012
  4. Dec 09, 2012
  5. Dec 08, 2012
  6. Dec 05, 2012
  7. Dec 04, 2012
  8. Dec 03, 2012
  9. Nov 30, 2012
    • Chandler Carruth's avatar
      Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES. · f12e3a67
      Chandler Carruth authored
      Rationale:
      1) This was the name in the comment block. ;]
      2) It matches Clang's __has_feature naming convention.
      3) It matches other compiler-feature-test conventions.
      
      Sorry for the noise. =]
      
      I've also switch the comment block to use a \brief tag and not duplicate
      the name.
      
      llvm-svn: 168996
      f12e3a67
  10. Nov 29, 2012
  11. Nov 28, 2012
  12. Nov 27, 2012
  13. Nov 20, 2012
    • Sean Silva's avatar
      Allow using MemoryBuffers with yaml::Stream directly. · aba8270d
      Sean Silva authored
      The rationale is to get YAML filenames in diagnostics from
      yaml::Stream::printError -- currently the filename is hard-coded as
      "YAML" because there's no buffer information available.
      
      Patch by Kim Gräsman!
      
      llvm-svn: 168341
      aba8270d
  14. Nov 17, 2012
  15. Nov 16, 2012
  16. Nov 14, 2012
  17. Nov 12, 2012
  18. Nov 10, 2012
  19. Nov 08, 2012
  20. Oct 31, 2012
  21. Oct 30, 2012
  22. Oct 29, 2012
    • Ulrich Weigand's avatar
      Implement arithmetic on APFloat with PPCDoubleDouble semantics by · d9f7e259
      Ulrich Weigand authored
      treating it as if it were an IEEE floating-point type with 106-bit
      mantissa.
      
      This makes compile-time arithmetic on "long double" for PowerPC
      in clang (in particular parsing of floating point constants)
      work, and fixes all "long double" related failures in the test
      suite.
      
      llvm-svn: 166951
      d9f7e259
  23. Oct 23, 2012
Loading