[PATCH] D118996: [clang-tidy] Support C++14 in bugprone-signal-handler.

Balázs Kéri via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun May 15 23:58:52 PDT 2022


balazske added inline comments.


================
Comment at: clang-tools-extra/clang-tidy/bugprone/SignalHandlerCheck.cpp:285
+  return isa<CoreturnStmt>(S) || isa<CoroutineBodyStmt>(S) ||
+         isa<MSDependentExistsStmt>(S) || isa<CUDAKernelCallExpr>(S) ||
+         isa<MSPropertyRefExpr>(S) || isa<MSPropertySubscriptExpr>(S) ||
----------------
whisperity wrote:
> Is CUDA built upon C++-specific features?
It looks like no, but the class `CUDAKernelCallExpr` resides in ExprCXX.h so I think it is a C++ specific class. This may be a C++ extension.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118996/new/

https://reviews.llvm.org/D118996



More information about the cfe-commits mailing list