diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-26 01:45:06 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-26 01:45:06 +0000 |
commit | 4b86cdbb4f767e352304b03fdb92d6cd501479c6 (patch) | |
tree | 1bbfab08f1335855384c428d0564a406abcd18bd /llvm/lib/DebugInfo/DWARFDebugLine.cpp | |
parent | d191472c99687e033a1ed799053c95312a91c10d (diff) | |
download | bcm5719-llvm-4b86cdbb4f767e352304b03fdb92d6cd501479c6.tar.gz bcm5719-llvm-4b86cdbb4f767e352304b03fdb92d6cd501479c6.zip |
DWARFDebugLine.cpp: Fix true path. Did you forget "return true" here?
llvm-svn: 173552
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugLine.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugLine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index 7b32d4fe9ed..192381c6f7c 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 |