diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-11 23:09:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-11 23:09:16 +0000 |
commit | 32a47ed1f58c88dbc99fbe6ed76e07cafed6479a (patch) | |
tree | 499eee8c1dd5c32787cce15f7cd47f63f1ea3a04 | |
parent | 105e9d75d99b3b62a6f75ff29a0e2b821e4dad68 (diff) |
add some spaces :)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66738 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/Stmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index f68ed0ac89..0cf36f98a8 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -278,7 +278,7 @@ unsigned AsmStmt::AnalyzeAsmString(llvm::SmallVectorImpl<AsmStringPiece>&Pieces, --CurPtr; while (CurPtr != StrEnd && isdigit(*CurPtr)) - N = N*10+((*CurPtr++)-'0'); + N = N*10 + ((*CurPtr++)-'0'); unsigned NumOperands = getNumOutputs() + getNumPlusOperands() + getNumInputs(); |