From f9e44c8bf8deb202e668a045c4e47f4ee312c66f 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218886 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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: -- 2.34.1