From 4b86cdbb4f767e352304b03fdb92d6cd501479c6 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 26 Jan 2013 01:45:06 +0000 Subject: [PATCH] DWARFDebugLine.cpp: Fix true path. Did you forget "return true" here? llvm-svn: 173552 --- llvm/lib/DebugInfo/DWARFDebugLine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index 7b32d4fe9ed9..192381c6f7c6 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLine.cpp @@ -597,6 +597,8 @@ DWARFDebugLine::LineTable::lookupAddressRange(uint64_t address, ++seq_pos; } + + return true; } bool