From: Eric Christopher Date: Mon, 6 May 2013 21:19:44 +0000 (+0000) Subject: Hoist boundary condition out of loop header. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e305e03d6f71f70a7102f15ac5ff6fd93cf9e818;p=oota-llvm.git Hoist boundary condition out of loop header. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181248 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp index a47fe56fe42..9f521330c34 100644 --- a/lib/DebugInfo/DWARFContext.cpp +++ b/lib/DebugInfo/DWARFContext.cpp @@ -141,7 +141,8 @@ void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType) { OS << "\n.debug_str_offsets.dwo contents:\n"; DataExtractor strOffsetExt(getStringOffsetDWOSection(), isLittleEndian(), 0); offset = 0; - while (offset < getStringOffsetDWOSection().size()) { + uint64_t size = getStringOffsetDWOSection().size(); + while (offset < size) { OS << format("0x%8.8x: ", offset); OS << format("%8.8x\n", strOffsetExt.getU32(&offset)); }