File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
clang/include/clang/Analysis/PathSensitive Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ class GREngine : public GREngineImpl {
195
195
public:
196
196
// / Construct a GREngine object to analyze the provided CFG using
197
197
// / a DFS exploration of the exploded graph.
198
- GREngine (CFG& Cfg )
198
+ GREngine (CFG& cfg )
199
199
: GREngineImpl(cfg, new GraphTy(), GRWorkList::MakeDFS()),
200
200
Checker (static_cast <GraphTy*>(G.get())->getCheckerState()) {
201
201
Checker->Initialize (cfg);
@@ -206,7 +206,9 @@ class GREngine : public GREngineImpl {
206
206
// / The GREngine object assumes ownership of 'wlist'.
207
207
GREngine (CFG& cfg, GRWorkList* wlist)
208
208
: GREngineImpl(cfg, new GraphTy(), wlist),
209
- Checker(static_cast <GraphTy*>(G.get())->getCheckerState()) {}
209
+ Checker(static_cast <GraphTy*>(G.get())->getCheckerState()) {
210
+ Checker->Initialize (cfg);
211
+ }
210
212
211
213
virtual ~GREngine () {}
212
214
You can’t perform that action at this time.
0 commit comments