[clang] [clang][CFG] Sequence RHS before LHS for overloaded assignment operators in CFG to match C++17 rules (PR #181113)
Utkarsh Saxena via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 13 13:27:10 PST 2026
================
@@ -5095,6 +5111,11 @@ CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool ExternallyDestructed,
ExternallyDestructed,
Context);
+ case Stmt::CXXOperatorCallExprClass: {
----------------
usx95 wrote:
nit: remove the `{`braces here.
https://github.com/llvm/llvm-project/pull/181113
More information about the cfe-commits
mailing list