diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/Stmt.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/AST/Stmt.cpp b/clang/lib/AST/Stmt.cpp index 0cf36f98a83..ce55fae87e9 100644 --- a/clang/lib/AST/Stmt.cpp +++ b/clang/lib/AST/Stmt.cpp @@ -177,9 +177,6 @@ int AsmStmt::getNamedOperand(const std::string &SymbolicName) const { for (unsigned i = 0, e = getNumOutputs(); i != e; ++i) { if (getOutputName(i) == SymbolicName) return i; - - // Keep track of the number of '+' operands. - if (isOutputPlusConstraint(i)) ++NumPlusOperands; } for (unsigned i = 0, e = getNumInputs(); i != e; ++i) |