[llvm-commits] [llvm] r173552 - DWARFDebugLine.cpp: Fix true path. Did you forget "return true" here?

NAKAMURA Takumi geek4civic at gmail.com
Fri Jan 25 17:45:06 PST 2013


Author: chapuni
Date: Fri Jan 25 19:45:06 2013
New Revision: 173552

URL: http://llvm.org/viewvc/llvm-project?rev=173552&view=rev
Log:
DWARFDebugLine.cpp: Fix true path. Did you forget "return true" here?

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

Modified: llvm/trunk/lib/DebugInfo/DWARFDebugLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugLine.cpp?rev=173552&r1=173551&r2=173552&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFDebugLine.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFDebugLine.cpp Fri Jan 25 19:45:06 2013
@@ -597,6 +597,8 @@ DWARFDebugLine::LineTable::lookupAddress
 
     ++seq_pos;
   }
+
+  return true;
 }
 
 bool





More information about the llvm-commits mailing list