Properly hook up inline asm transfer function logic to the main GRExprEngine logic.

llvm-svn: 48468
This commit is contained in:
Ted Kremenek 2008-03-17 21:31:48 +00:00
parent a9bd82634b
commit 58021a617b
1 changed files with 4 additions and 0 deletions

View File

@ -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);