diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-04 15:58:44 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-04 15:58:44 +0000 |
commit | d5eb585a02d6905b5e6f83fd03a90d583a39ac82 (patch) | |
tree | 58201779a569a6773e565e638b8b2da1e369fd9e /lib/Sema/SemaStmtAsm.cpp | |
parent | 1b497f26ab7861b22383b22f35cf799c0b312c9b (diff) |
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163142 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaStmtAsm.cpp')
-rw-r--r-- | lib/Sema/SemaStmtAsm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaStmtAsm.cpp b/lib/Sema/SemaStmtAsm.cpp index 148604d97e..2af2afe398 100644 --- a/lib/Sema/SemaStmtAsm.cpp +++ b/lib/Sema/SemaStmtAsm.cpp @@ -570,8 +570,8 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, unsigned NumDefs = Desc.getNumDefs(); for (unsigned i = 1, e = Operands.size(); i != e; ++i) { unsigned NumMCOperands; - unsigned MCIdx = TargetParser->GetMCInstOperandNum(Kind, Inst, Operands, i, - NumMCOperands); + unsigned MCIdx = TargetParser->GetMCInstOperandNum(Kind, Inst, Operands, + i, NumMCOperands); assert (NumMCOperands && "Expected at least 1 MCOperand!"); // If we have a one-to-many mapping, then search for the MCExpr. if (NumMCOperands > 1) { |