diff options
author | Kazu Hirata <kazu@google.com> | 2022-01-01 16:18:18 -0800 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-01-01 16:18:18 -0800 |
commit | fd4808887ee47f3ec8a030e9211169ef4fb094c3 (patch) | |
tree | 73657b469ae10e1950dc3af57464fef9ac52a3b3 /llvm/lib/IR/Module.cpp | |
parent | 104a827ea6de0cbe0f5faef4407552ede31d165c (diff) | |
download | llvm-fd4808887ee47f3ec8a030e9211169ef4fb094c3.zip llvm-fd4808887ee47f3ec8a030e9211169ef4fb094c3.tar.gz llvm-fd4808887ee47f3ec8a030e9211169ef4fb094c3.tar.bz2 |
[llvm] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'llvm/lib/IR/Module.cpp')
-rw-r--r-- | llvm/lib/IR/Module.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/IR/Module.cpp b/llvm/lib/IR/Module.cpp index a0485a5..b3b4b8a 100644 --- a/llvm/lib/IR/Module.cpp +++ b/llvm/lib/IR/Module.cpp @@ -73,8 +73,7 @@ template class llvm::SymbolTableListTraits<GlobalIFunc>; Module::Module(StringRef MID, LLVMContext &C) : Context(C), ValSymTab(std::make_unique<ValueSymbolTable>(-1)), - Materializer(), ModuleID(std::string(MID)), - SourceFileName(std::string(MID)), DL("") { + ModuleID(std::string(MID)), SourceFileName(std::string(MID)), DL("") { Context.addModule(this); } |