OSDN Git Service

[CodeView] Remove constructor initialization of a removed field.
authorDavide Italiano <davide@freebsd.org>
Wed, 3 May 2017 18:02:46 +0000 (18:02 +0000)
committerDavide Italiano <davide@freebsd.org>
Wed, 3 May 2017 18:02:46 +0000 (18:02 +0000)
I should've staged this with my last commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302059 91177308-0d34-0410-b5e6-96231b3b80d8

lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp

index fdba114..e0ee934 100644 (file)
@@ -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);