[DomTree] Remove dead code.[NFC]
authorAlina Sbirlea <asbirlea@google.com>
Mon, 27 Jul 2020 23:41:55 +0000 (16:41 -0700)
committerAlina Sbirlea <asbirlea@google.com>
Tue, 28 Jul 2020 01:02:52 +0000 (18:02 -0700)
llvm/include/llvm/Support/GenericDomTreeConstruction.h

index 709276a..5a1f03c 100644 (file)
@@ -92,13 +92,9 @@ struct SemiNCAInfo {
 
   BatchUpdateInfo *BatchUpdates;
   using BatchUpdatePtr = BatchUpdateInfo *;
-  std::unique_ptr<GraphDiffT> EmptyGD;
 
   // If BUI is a nullptr, then there's no batch update in progress.
-  SemiNCAInfo(BatchUpdatePtr BUI) : BatchUpdates(BUI) {
-    if (!BatchUpdates)
-      EmptyGD = std::make_unique<GraphDiffT>();
-  }
+  SemiNCAInfo(BatchUpdatePtr BUI) : BatchUpdates(BUI) {}
 
   void clear() {
     NumToNode = {nullptr}; // Restore to initial state with a dummy start node.