- Mar 08, 2019
-
-
Hyrum Wright authored
This function is always used in a context where its result was also negated, which made for confusing naming and code. llvm-svn: 355702
-
- Feb 27, 2019
-
-
Hyrum Wright authored
Differential Revision: https://reviews.llvm.org/D58137 llvm-svn: 355024
-
- Feb 02, 2019
-
-
Hyrum Wright authored
llvm-svn: 352964
-
- Jan 28, 2019
-
-
Hyrum Wright authored
Differential Revision: https://reviews.llvm.org/D57185 llvm-svn: 352362
-
- Jan 24, 2019
-
-
Hyrum Wright authored
llvm-svn: 352088
-
- Jan 19, 2019
-
-
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
-
- Jan 16, 2019
-
-
Hyrum Wright authored
This is useful for multiple checks. llvm-svn: 351348
-
- Jan 07, 2019
-
-
Hyrum Wright authored
llvm-svn: 350526
-
- Dec 28, 2018
-
-
Hyrum Wright authored
This allows other tools to use this function. llvm-svn: 350133
-
- Dec 21, 2018
-
-
Hyrum Wright authored
Summary: Previously, we'd only match on literal floating or integral zeroes, but I've now also learned that some users spell that value as int{0} or float{0}, which also need to be matched. Differential Revision: https://reviews.llvm.org/D56012 llvm-svn: 349953
-
- Dec 19, 2018
-
-
Hyrum Wright authored
Summary: This change relaxes the requirements on the utility `rewriteExprFromNumberToDuration` function, and introduces new checking inside of the `abseil-duration-comparison` check to allow macro argument expression transformation. Differential Revision: https://reviews.llvm.org/D55784 llvm-svn: 349636
-
- Dec 13, 2018
-
-
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
-
- Dec 03, 2018
-
-
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
-
Jonas Toth authored
This commit broke buildbots and needs adjustments. llvm-svn: 348165
-
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
-