[PATCH] D111568: [clang] Omit most AttributedStatements from the CFG

Nico Weber via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 11 11:32:21 PDT 2021


thakis added inline comments.


================
Comment at: clang/lib/Analysis/CFG.cpp:2410
+
+CFGBlock *CFGBuilder::VisitAttributedStmt(AttributedStmt *A,
+                                          AddStmtChoice asc) {
----------------
(Compare this function to `CFGBuilder::VisitStmt` in this file, which is the default function that's called for Stmts and which is what was called for AttributedStmt before this patch added a dedicated handler for AttributedStmt.)


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

https://reviews.llvm.org/D111568



More information about the cfe-commits mailing list