[clang-tools-extra] [clang] [C23] Fix crash with _BitInt running clang-tidy (PR #65889)

Erich Keane via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 29 07:59:42 PDT 2023


================
@@ -1333,7 +1333,13 @@ void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) {
 void StmtProfiler::VisitIntegerLiteral(const IntegerLiteral *S) {
   VisitExpr(S);
   S->getValue().Profile(ID);
-  ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind());
+
+  QualType T = S->getType();
+  ID.AddInteger(T->getTypeClass());
----------------
erichkeane wrote:

Oooh, good catch!  Thanks for that!  Can you contribute a patch to fix that? (That is, canonicalize T).

https://github.com/llvm/llvm-project/pull/65889


More information about the cfe-commits mailing list