[NFC] Remove unnecessary default constructors
authorArthur Eubanks <aeubanks@google.com>
Thu, 24 Sep 2020 01:52:35 +0000 (18:52 -0700)
committerArthur Eubanks <aeubanks@google.com>
Thu, 24 Sep 2020 01:54:10 +0000 (18:54 -0700)
llvm/include/llvm/Passes/StandardInstrumentations.h

index 76e217c..5285089 100644 (file)
@@ -37,7 +37,6 @@ class Function;
 /// (typically Loop or SCC).
 class PrintIRInstrumentation {
 public:
-  PrintIRInstrumentation() = default;
   ~PrintIRInstrumentation();
 
   void registerCallbacks(PassInstrumentationCallbacks &PIC);
@@ -60,7 +59,6 @@ private:
 
 class OptNoneInstrumentation {
 public:
-  OptNoneInstrumentation() {}
   void registerCallbacks(PassInstrumentationCallbacks &PIC);
 
 private: