1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[CodeView] Remove constructor initialization of a removed field.

I should've staged this with my last commit.

llvm-svn: 302059
This commit is contained in:
Davide Italiano 2017-05-03 18:02:46 +00:00
parent 892ad9babd
commit eed883ed5d

View 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);