diff options
Diffstat (limited to 'lib/Analysis/CFG.cpp')
| -rw-r--r-- | lib/Analysis/CFG.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/Analysis/CFG.cpp b/lib/Analysis/CFG.cpp index a4a021f20b21c..f94f6b3f127fe 100644 --- a/lib/Analysis/CFG.cpp +++ b/lib/Analysis/CFG.cpp @@ -571,7 +571,7 @@ static bool CanThrow(Expr *E) {  CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {    // If this is a call to a no-return function, this stops the block here.    bool NoReturn = false; -  if (C->getCallee()->getType().getNoReturnAttr()) { +  if (getFunctionExtInfo(*C->getCallee()->getType()).getNoReturn()) {      NoReturn = true;    } | 
