[clang] 34558b0 - [StaticAnalyzer] Remove redundant declaration isStdSmartPtr (NFC)

2021-12-25 Thread Kazu Hirata via cfe-commits
Author: Kazu Hirata Date: 2021-12-25T00:35:41-08:00 New Revision: 34558b039b3baf057851b8d39f53402608da4927 URL: https://github.com/llvm/llvm-project/commit/34558b039b3baf057851b8d39f53402608da4927 DIFF: https://github.com/llvm/llvm-project/commit/34558b039b3baf057851b8d39f53402608da4927.diff L

[PATCH] D116261: [WIP][Clang][OpenMP] Add support for compare capture in parser

2021-12-25 Thread Shilei Tian via Phabricator via cfe-commits
tianshilei1992 updated this revision to Diff 396199. tianshilei1992 added a comment. update test case Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D116261/new/ https://reviews.llvm.org/D116261 Files: clang/include/clang/AST/OpenMPClause.h clan

[PATCH] D116280: [clang] adds unary type trait checks as compiler built-ins

2021-12-25 Thread Christopher Di Bella via Phabricator via cfe-commits
cjdb created this revision. Herald added a subscriber: dexonsmith. cjdb requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits. This is information that the compiler already has, and should be exposed so that the library doesn't need to reimplement

[PATCH] D114425: [clang] Add __builtin_bswap128

2021-12-25 Thread Craig Topper via Phabricator via cfe-commits
craig.topper added a comment. What does the builtin due if __int128 isn't supported? Even though the type isn't legal the builtin can still be called with a narrower type that would be implicitly converted. Does that work correctly? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACT