File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ bool CondChainInfo::setFuncCallInfo(CondStatus &Cond, const CallExpr *CE) {
453
453
}
454
454
455
455
bool CondChainInfo::setDefInfo (CondStatus &Cond, const Stmt *S) {
456
- LastDefInfo::DefInfoMap &DefInfoMap = LastDefInfo .DefInfo ;
456
+ LastDefInfo::DefInfoMap &DefInfoMap = DefInfo .DefInfo ;
457
457
bool Flag = Cond.Flag ;
458
458
if (Cond.Condition ->isNot ())
459
459
Flag = !Flag;
@@ -468,7 +468,7 @@ bool CondChainInfo::setDefInfo(CondStatus &Cond, const Stmt *S) {
468
468
}
469
469
470
470
bool CondChainInfo::setParmInfo (CondStatus &Cond, const ParmVarDecl *PVD) {
471
- LastDefInfo::ParmInfoMap &ParmInfoMap = LastDefInfo .ParmInfo ;
471
+ LastDefInfo::ParmInfoMap &ParmInfoMap = DefInfo .ParmInfo ;
472
472
bool Flag = Cond.Flag ;
473
473
if (Cond.Condition ->isNot ())
474
474
Flag = !Flag;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ struct CondChainInfo {
73
73
CondChain Chain;
74
74
BlkPath Path;
75
75
bool IsContra = false ;
76
- LastDefInfo LastDefInfo ; // last definition information in a condition chain
76
+ LastDefInfo DefInfo ; // last definition information in a condition chain
77
77
unordered_map<const FunctionDecl *, vector<CallExprInfo>>
78
78
FuncCallInfo; // function call information in a condition chain
79
79
You can’t perform that action at this time.
0 commit comments