From faa19c32a244efdd3d9d546d938389a42537d949 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 10 May 2010 20:07:44 +0000 Subject: [PATCH] Fix whitespace in debug output to be consistent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103422 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DebugInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index 717c7fb5143..92f91f4d600 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -466,7 +466,7 @@ void DICompileUnit::print(raw_ostream &OS) const { if (getLanguage()) OS << " [" << dwarf::LanguageString(getLanguage()) << "] "; - OS << " [" << getDirectory() << "/" << getFilename() << " ]"; + OS << " [" << getDirectory() << "/" << getFilename() << "]"; } /// print - Print type. -- 2.34.1