[llvm-commits] [llvm] r171487 - /llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp

Eric Christopher echristo at gmail.com
Fri Jan 4 10:30:36 PST 2013


Author: echristo
Date: Fri Jan  4 12:30:36 2013
New Revision: 171487

URL: http://llvm.org/viewvc/llvm-project?rev=171487&view=rev
Log:
Add a space to the end of the line so we don't get "itsbounds" in output.

Modified:
    llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp

Modified: llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp?rev=171487&r1=171486&r2=171487&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFCompileUnit.cpp Fri Jan  4 12:30:36 2013
@@ -208,7 +208,7 @@
   // should always terminate at or before the start of the next compilation
   // unit header).
   if (offset > next_cu_offset)
-    fprintf(stderr, "warning: DWARF compile unit extends beyond its"
+    fprintf(stderr, "warning: DWARF compile unit extends beyond its "
                     "bounds cu 0x%8.8x at 0x%8.8x'\n", getOffset(), offset);
 
   setDIERelations();





More information about the llvm-commits mailing list