[llvm] r302059 - [CodeView] Remove constructor initialization of a removed field.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Wed May 3 11:02:47 PDT 2017
Author: davide
Date: Wed May 3 13:02:46 2017
New Revision: 302059
URL: http://llvm.org/viewvc/llvm-project?rev=302059&view=rev
Log:
[CodeView] Remove constructor initialization of a removed field.
I should've staged this with my last commit.
Modified:
llvm/trunk/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp
Modified: llvm/trunk/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp?rev=302059&r1=302058&r2=302059&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp (original)
+++ llvm/trunk/lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp Wed May 3 13:02:46 2017
@@ -69,8 +69,8 @@ bool ModuleDebugLineFragmentRef::hasColu
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);
More information about the llvm-commits
mailing list