[PATCH] D152263: [clang][CFG] Add support for partitioning CFG into intervals.
Gábor Horváth via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 6 12:45:52 PDT 2023
xazax.hun added inline comments.
================
Comment at: clang/include/clang/Analysis/Analyses/IntervalPartition.h:22
+
+struct CFGInterval {
+ CFGInterval(const CFGBlock *Header) : Header(Header), Blocks({Header}) {}
----------------
A concise definition of what is an interval with a reference to the dragon book might be useful here.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152263/new/
https://reviews.llvm.org/D152263
More information about the cfe-commits
mailing list