[PATCH] D116637: [Clang][Sema][OpenMP] Sema support for `atomic compare`
Shilei Tian via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 3 16:43:08 PST 2022
tianshilei1992 marked 3 inline comments as done.
tianshilei1992 added inline comments.
================
Comment at: clang/lib/Sema/SemaOpenMP.cpp:11206
+ if (!E->isInstantiationDependent()) {
+ auto Type = E->getType();
+ if (!Type->isScalarType()) {
----------------
ABataev wrote:
> `QualType`
Do you mean by not using `auto`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116637/new/
https://reviews.llvm.org/D116637
More information about the cfe-commits
mailing list