From 32a47ed1f58c88dbc99fbe6ed76e07cafed6479a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 11 Mar 2009 23:09:16 +0000 Subject: [PATCH] add some spaces :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66738 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/Stmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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&Pieces, --CurPtr; while (CurPtr != StrEnd && isdigit(*CurPtr)) - N = N*10+((*CurPtr++)-'0'); + N = N*10 + ((*CurPtr++)-'0'); unsigned NumOperands = getNumOutputs() + getNumPlusOperands() + getNumInputs(); -- 2.40.0