From: Ted Kremenek Date: Mon, 17 Mar 2008 21:31:48 +0000 (+0000) Subject: Properly hook up inline asm transfer function logic to the main GRExprEngine logic. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ffa0aad4c0ee33a5bbcb5c6499206a3e1f0ae8f;p=clang Properly hook up inline asm transfer function logic to the main GRExprEngine logic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48468 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index cc0923e796..d27c41c4ef 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -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(S), Pred, Dst); + break; case Stmt::BinaryOperatorClass: { BinaryOperator* B = cast(S);