[clang] [LifetimeSafety] Add support for tracking non-trivially destructed temporary objects (PR #172007)
Abhinav Pradeep via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 15 03:40:34 PST 2025
================
@@ -218,9 +241,14 @@ void FactsGenerator::VisitMaterializeTemporaryExpr(
const MaterializeTemporaryExpr *MTE) {
if (!hasOrigin(MTE))
return;
- // A temporary object's origin is the same as the origin of the
- // expression that initializes it.
- killAndFlowOrigin(*MTE, *MTE->getSubExpr());
+ if (getChildBinding(MTE)) {
----------------
AbhinavPradeep wrote:
Makes sense will include it!
https://github.com/llvm/llvm-project/pull/172007
More information about the cfe-commits
mailing list