aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/CallGraphSCCPass.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-01-07 17:45:09 -0800
committerKazu Hirata <kazu@google.com>2022-01-07 17:45:09 -0800
commitb932bdf59f7608b7bcc783afcd4ad5a3cd8bfd59 (patch)
treef2ebe2e25d26d9f338409d5e569dd9728b151443 /llvm/lib/Analysis/CallGraphSCCPass.cpp
parentbdef75fd6127b1460640d05ab2fbb96718b04f86 (diff)
downloadllvm-b932bdf59f7608b7bcc783afcd4ad5a3cd8bfd59.zip
llvm-b932bdf59f7608b7bcc783afcd4ad5a3cd8bfd59.tar.gz
llvm-b932bdf59f7608b7bcc783afcd4ad5a3cd8bfd59.tar.bz2
[llvm] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'llvm/lib/Analysis/CallGraphSCCPass.cpp')
-rw-r--r--llvm/lib/Analysis/CallGraphSCCPass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/CallGraphSCCPass.cpp b/llvm/lib/Analysis/CallGraphSCCPass.cpp
index f2e5eab..930cb13 100644
--- a/llvm/lib/Analysis/CallGraphSCCPass.cpp
+++ b/llvm/lib/Analysis/CallGraphSCCPass.cpp
@@ -61,7 +61,7 @@ class CGPassManager : public ModulePass, public PMDataManager {
public:
static char ID;
- explicit CGPassManager() : ModulePass(ID), PMDataManager() {}
+ explicit CGPassManager() : ModulePass(ID) {}
/// Execute all of the passes scheduled for execution. Keep track of
/// whether any of the passes modifies the module, and if so, return true.