Skip to content
Snippets Groups Projects
Commit 58021a61 authored by Ted Kremenek's avatar Ted Kremenek
Browse files

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

llvm-svn: 48468
parent a9bd8263
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment