diff options
| author | Bob Haarman <llvm@inglorion.net> | 2017-06-09 01:18:10 +0000 |
|---|---|---|
| committer | Bob Haarman <llvm@inglorion.net> | 2017-06-09 01:18:10 +0000 |
| commit | fdf499bf2d589bee2a6a3da49a74840c4c511c59 (patch) | |
| tree | 9755204587b2c2bd79d6121f8b6343145016c934 /llvm/test | |
| parent | 6b901217dc4f221a40efa12e0cbf2bf0bc944d9d (diff) | |
| download | bcm5719-llvm-fdf499bf2d589bee2a6a3da49a74840c4c511c59.tar.gz bcm5719-llvm-fdf499bf2d589bee2a6a3da49a74840c4c511c59.zip | |
[codeview] use 32-bit integer for RelocOffset in DebugLinesSubsection
Summary:
RelocOffset is a 32-bit value, but we previously truncated it to 16 bits.
Fixes PR33335.
Reviewers: zturner, hiraditya!
Reviewed By: zturner
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D33968
llvm-svn: 305043
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/DebugInfo/PDB/Inputs/debug-subsections.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/DebugInfo/PDB/Inputs/debug-subsections.yaml b/llvm/test/DebugInfo/PDB/Inputs/debug-subsections.yaml index efe79b976d5..ab199d2f21a 100644 --- a/llvm/test/DebugInfo/PDB/Inputs/debug-subsections.yaml +++ b/llvm/test/DebugInfo/PDB/Inputs/debug-subsections.yaml @@ -38,7 +38,7 @@ DbiStream: - !Lines CodeSize: 10 Flags: [ ] - RelocOffset: 16 + RelocOffset: 100016 RelocSegment: 1 Blocks: - FileName: 'd:\src\llvm\test\debuginfo\pdb\inputs\empty.cpp' |

