diff options
Diffstat (limited to 'clang/Analysis/DeadStores.cpp')
| -rw-r--r-- | clang/Analysis/DeadStores.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/clang/Analysis/DeadStores.cpp b/clang/Analysis/DeadStores.cpp index 564478d6260..926109e1b29 100644 --- a/clang/Analysis/DeadStores.cpp +++ b/clang/Analysis/DeadStores.cpp @@ -80,7 +80,7 @@ void CheckDeadStores(CFG& cfg, ASTContext &Ctx, Diagnostic &Diags) {    LiveVariables L(cfg);    L.runOnCFG(cfg);    DeadStoreObs A(Ctx, Diags); -  L.runOnAllBlocks(cfg,A); +  L.runOnAllBlocks(cfg,&A);  }  } // end namespace clang | 

