summaryrefslogtreecommitdiff
path: root/lib/DebugInfo
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-08-23 00:52:49 +0000
committerEric Christopher <echristo@apple.com>2012-08-23 00:52:49 +0000
commit1a145c409af461a12a385540e7a0781eec13e9da (patch)
tree31fef8413aef54b59e5f84668a66b368efaeb407 /lib/DebugInfo
parentffd2526fa4e2d78564694b4797b96236c9ba9d85 (diff)
downloadllvm-1a145c409af461a12a385540e7a0781eec13e9da.tar.gz
llvm-1a145c409af461a12a385540e7a0781eec13e9da.tar.bz2
llvm-1a145c409af461a12a385540e7a0781eec13e9da.tar.xz
Tidy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162421 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r--lib/DebugInfo/DWARFCompileUnit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/DebugInfo/DWARFCompileUnit.cpp b/lib/DebugInfo/DWARFCompileUnit.cpp
index b27d57bef1..4c98cb8a7f 100644
--- a/lib/DebugInfo/DWARFCompileUnit.cpp
+++ b/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();