Skip to content
  1. Mar 08, 2019
  2. Feb 27, 2019
  3. Feb 02, 2019
  4. Jan 28, 2019
  5. Jan 24, 2019
  6. Jan 19, 2019
    • Chandler Carruth's avatar
      Update the file headers across all of the LLVM projects in the monorepo · 2946cd70
      Chandler Carruth authored
      to reflect the new license.
      
      We understand that people may be surprised that we're moving the header
      entirely to discuss the new license. We checked this carefully with the
      Foundation's lawyer and we believe this is the correct approach.
      
      Essentially, all code in the project is now made available by the LLVM
      project under our new license, so you will see that the license headers
      include that license only. Some of our contributors have contributed
      code under our old license, and accordingly, we have retained a copy of
      our old license notice in the top-level files in each project and
      repository.
      
      llvm-svn: 351636
      2946cd70
  7. Jan 16, 2019
  8. Jan 07, 2019
  9. Dec 28, 2018
  10. Dec 21, 2018
  11. Dec 19, 2018
  12. Dec 13, 2018
    • Hyrum Wright's avatar
      [clang-tidy] Add the abseil-duration-subtraction check · 35cb7e9f
      Hyrum Wright authored
      Summary:
      This check uses the context of a subtraction expression as well as knowledge
      about the Abseil Time types, to infer the type of the second operand of some
      subtraction expressions in Duration conversions. For example:
      
         absl::ToDoubleSeconds(duration) - foo
      
      can become
         absl::ToDoubleSeconds(duration - absl::Seconds(foo))
      
      This ensures that time calculations are done in the proper domain, and also
      makes it easier to further deduce the types of the second operands to these
      expressions.
      
      Reviewed By: JonasToth
      
      Tags: #clang-tools-extra
      
      Differential Revision: https://reviews.llvm.org/D55245
      
      llvm-svn: 349073
      35cb7e9f
  13. Dec 03, 2018
    • Jonas Toth's avatar
      [clang-tidy] Recommit: Add the abseil-duration-comparison check · 00f1d767
      Jonas Toth authored
      Summary:
      This check finds instances where Duration values are being converted to a numeric value in a comparison expression, and suggests that the conversion happen on the other side of the expression to a Duration.  See documentation for examples.
      
      This also shuffles some code around so that the new check may perform in sone step simplifications also caught by other checks.
      Compilation is unbroken, because the hash-function is now directly
      specified for std::unordered_map, as 'enum class' does not compile as
      key (seamingly only on some compilers).
      
      Patch by hwright.
      
      Reviewers: aaron.ballman, JonasToth, alexfh, hokein
      
      Reviewed By: JonasToth
      
      Subscribers: sammccall, Eugene.Zelenko, xazax.hun, cfe-commits, mgorny
      
      Tags: #clang-tools-extra
      
      Differential Revision: https://reviews.llvm.org/D54737
      
      llvm-svn: 348169
      00f1d767
    • Jonas Toth's avatar
      Revert "[clang-tidy] Add the abseil-duration-comparison check" · b77711e2
      Jonas Toth authored
      This commit broke buildbots and needs adjustments.
      
      llvm-svn: 348165
      b77711e2
    • Jonas Toth's avatar
      [clang-tidy] Add the abseil-duration-comparison check · 5da1825e
      Jonas Toth authored
      Summary:
      This check finds instances where Duration values are being converted to a numeric value in a comparison expression, and suggests that the conversion happen on the other side of the expression to a Duration.  See documentation for examples.
      
      This also shuffles some code around so that the new check may perform in sone step simplifications also caught by other checks.
      
      Patch by hwright.
      
      Reviewers: aaron.ballman, JonasToth, alexfh, hokein
      
      Reviewed By: JonasToth
      
      Subscribers: sammccall, Eugene.Zelenko, xazax.hun, cfe-commits, mgorny
      
      Tags: #clang-tools-extra
      
      Differential Revision: https://reviews.llvm.org/D54737
      
      llvm-svn: 348161
      5da1825e
Loading