aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/AllTargets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/AllTargets.cpp')
-rw-r--r--lib/Target/AllTargets.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/Target/AllTargets.cpp b/lib/Target/AllTargets.cpp
deleted file mode 100644
index a265e88..0000000
--- a/lib/Target/AllTargets.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-//===-- AllTargets.cpp ----------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements functions for initialization of different
-// aspects of all configured targets. When calling any of these
-// functions all configured targets must be linked in.
-//
-//===----------------------------------------------------------------------===//
-
-#include "llvm-c/Target.h"
-#include "llvm/Support/TargetSelect.h"
-
-using namespace llvm;
-
-void LLVMInitializeAllTargetInfos(void) {
- InitializeAllTargetInfos();
-}
-
-void LLVMInitializeAllTargets(void) {
- InitializeAllTargets();
-}
-
-void LLVMInitializeAllTargetMCs(void) {
- InitializeAllTargetMCs();
-}
-
-void LLVMInitializeAllAsmPrinters(void) {
- InitializeAllAsmPrinters();
-}
-
-void LLVMInitializeAllAsmParsers(void) {
- InitializeAllAsmParsers();
-}
-
-void LLVMInitializeAllDisassemblers(void) {
- InitializeAllDisassemblers();
-}