diff options
author | Davide Italiano <davide@freebsd.org> | 2017-05-03 18:02:46 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-05-03 18:02:46 +0000 |
commit | 2e23ce4cadeace53fd7de8c89d786f59108f378a (patch) | |
tree | bf11480c26500fdb05ab3c9dbd735bf188d29279 /llvm/lib | |
parent | ac0ec2240b9aa3aa4212db3bb3eac57c2a49d600 (diff) | |
download | bcm5719-llvm-2e23ce4cadeace53fd7de8c89d786f59108f378a.tar.gz bcm5719-llvm-2e23ce4cadeace53fd7de8c89d786f59108f378a.zip |
[CodeView] Remove constructor initialization of a removed field.
I should've staged this with my last commit.
llvm-svn: 302059
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp b/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp index fdba1147f0b..e0ee934709b 100644 --- a/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp +++ b/llvm/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp @@ -69,8 +69,8 @@ bool ModuleDebugLineFragmentRef::hasColumnInfo() const { ModuleDebugLineFragment::ModuleDebugLineFragment( ModuleDebugFileChecksumFragment &Checksums, StringTable &Strings) - : ModuleDebugFragment(ModuleDebugFragmentKind::Lines), Checksums(Checksums), - Strings(Strings) {} + : ModuleDebugFragment(ModuleDebugFragmentKind::Lines), + Checksums(Checksums) {} void ModuleDebugLineFragment::createBlock(StringRef FileName) { uint32_t Offset = Checksums.mapChecksumOffset(FileName); |