diff options
author | Eric Christopher <echristo@apple.com> | 2012-08-23 00:52:49 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-08-23 00:52:49 +0000 |
commit | 0ef6ebc7e4184e0760f7f034f4c67901362c31fe (patch) | |
tree | 73d531fdd11af97933cb2743f3b610dd93895734 | |
parent | ae53561b0c6e908c4fcda40043517605f9f814a2 (diff) | |
download | bcm5719-llvm-0ef6ebc7e4184e0760f7f034f4c67901362c31fe.tar.gz bcm5719-llvm-0ef6ebc7e4184e0760f7f034f4c67901362c31fe.zip |
Tidy.
llvm-svn: 162421
-rw-r--r-- | llvm/lib/DebugInfo/DWARFCompileUnit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.cpp b/llvm/lib/DebugInfo/DWARFCompileUnit.cpp index b27d57bef1c..4c98cb8a7f9 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.cpp +++ b/llvm/lib/DebugInfo/DWARFCompileUnit.cpp @@ -199,9 +199,9 @@ size_t DWARFCompileUnit::extractDIEsIfNeeded(bool cu_die_only) { // Give a little bit of info if we encounter corrupt DWARF (our offset // 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 bounds cu 0x%8.8x at 0x%8.8x'\n", getOffset(), offset); - } + if (offset > next_cu_offset) + fprintf (stderr, "warning: DWARF compile unit extends beyond its" + "bounds cu 0x%8.8x at 0x%8.8x'\n", getOffset(), offset); setDIERelations(); return DieArray.size(); |