forked from OSchip/llvm-project
Properly hook up inline asm transfer function logic to the main GRExprEngine logic.
llvm-svn: 48468
This commit is contained in:
parent
a9bd82634b
commit
58021a617b
|
@ -1408,6 +1408,10 @@ void GRExprEngine::Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst) {
|
|||
|
||||
Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
|
||||
break;
|
||||
|
||||
case Stmt::AsmStmtClass:
|
||||
VisitAsmStmt(cast<AsmStmt>(S), Pred, Dst);
|
||||
break;
|
||||
|
||||
case Stmt::BinaryOperatorClass: {
|
||||
BinaryOperator* B = cast<BinaryOperator>(S);
|
||||
|
|
Loading…
Reference in New Issue