summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-05-03 19:42:06 +0000
committerZachary Turner <zturner@google.com>2017-05-03 19:42:06 +0000
commit4f145b2a5992c7c7488c90312f8efe7b73a749bb (patch)
treeca4bf3823f54bb37cbce01a3384adfa13efbd3d3 /llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp
parentf475fa3575eeaa5f445c2de2a9aafa3d95c65403 (diff)
downloadbcm5719-llvm-4f145b2a5992c7c7488c90312f8efe7b73a749bb.tar.gz
bcm5719-llvm-4f145b2a5992c7c7488c90312f8efe7b73a749bb.zip
Remove unused private field.
llvm-svn: 302069
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp')
-rw-r--r--llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp b/llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp
index a908e7df28b..cb6a8478797 100644
--- a/llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp
+++ b/llvm/lib/DebugInfo/CodeView/ModuleDebugInlineeLinesFragment.cpp
@@ -57,10 +57,9 @@ bool ModuleDebugInlineeLineFragmentRef::hasExtraFiles() const {
}
ModuleDebugInlineeLineFragment::ModuleDebugInlineeLineFragment(
- ModuleDebugFileChecksumFragment &Checksums, StringTable &Strings,
- bool HasExtraFiles)
+ ModuleDebugFileChecksumFragment &Checksums, bool HasExtraFiles)
: ModuleDebugFragment(ModuleDebugFragmentKind::InlineeLines),
- Checksums(Checksums), Strings(Strings), HasExtraFiles(HasExtraFiles) {}
+ Checksums(Checksums), HasExtraFiles(HasExtraFiles) {}
uint32_t ModuleDebugInlineeLineFragment::calculateSerializedLength() {
// 4 bytes for the signature
OpenPOWER on IntegriCloud