summaryrefslogtreecommitdiff
path: root/release_23/include/llvm/CodeGen/Collectors.h
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/include/llvm/CodeGen/Collectors.h')
-rw-r--r--release_23/include/llvm/CodeGen/Collectors.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/release_23/include/llvm/CodeGen/Collectors.h b/release_23/include/llvm/CodeGen/Collectors.h
deleted file mode 100644
index 0d9e4516106a..000000000000
--- a/release_23/include/llvm/CodeGen/Collectors.h
+++ /dev/null
@@ -1,39 +0,0 @@
-//===-- Collectors.h - Garbage collector registry -------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file declares the CollectorRegistry class, which is used to discover
-// pluggable garbage collectors.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CODEGEN_COLLECTORS_H
-#define LLVM_CODEGEN_COLLECTORS_H
-
-#include "llvm/Support/Registry.h"
-
-namespace llvm {
-
- class Collector;
-
- /// The collector registry uses all the defaults from Registry.
- ///
- typedef Registry<Collector> CollectorRegistry;
-
- /// FIXME: Collector instances are not useful on their own. These no longer
- /// serve any purpose except to link in the plugins.
-
- /// Creates an ocaml-compatible garbage collector.
- Collector *createOcamlCollector();
-
- /// Creates a shadow stack garbage collector. This collector requires no code
- /// generator support.
- Collector *createShadowStackCollector();
-}
-
-#endif