зеркало из https://github.com/microsoft/clang-1.git
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
This commit is contained in:
Родитель
f81eac6c11
Коммит
7ffa0aad4c
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче