From fe417a7c74f1fcfe9a0f988762ebe4adbb5685f7 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Thu, 2 Oct 2014 16:42:15 +0000 Subject: [PATCH] Remove an extra whitespace. llvm-svn: 218886 --- lib/IR/DebugInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index 2226dd63be6..42b0dc0fc27 100644 --- a/lib/IR/DebugInfo.cpp +++ b/lib/IR/DebugInfo.cpp @@ -1456,7 +1456,7 @@ void DIExpression::printInternal(raw_ostream &OS) const { case DW_OP_piece: { unsigned Offset = getElement(++I); unsigned Size = getElement(++I); - OS << " offset=" << Offset << ", size= " << Size; + OS << " offset=" << Offset << ", size=" << Size; break; } default: