summaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha/AlphaSelectionDAGInfo.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-10-27 22:56:32 +0000
committerStephen Hines <srhines@google.com>2011-11-14 09:11:24 -0800
commitfa86eb40bf5d7dfdd97f0fe0fc2a122c2d8eed01 (patch)
tree807b8393a3ca3fb45abf2e28da61618494f5d3e4 /lib/Target/Alpha/AlphaSelectionDAGInfo.h
parent38d59dbfec3318831bf293097968165abbee49a2 (diff)
downloadexternal_llvm-fa86eb40bf5d7dfdd97f0fe0fc2a122c2d8eed01.zip
external_llvm-fa86eb40bf5d7dfdd97f0fe0fc2a122c2d8eed01.tar.gz
external_llvm-fa86eb40bf5d7dfdd97f0fe0fc2a122c2d8eed01.tar.bz2
Remove the Alpha backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaSelectionDAGInfo.h')
-rw-r--r--lib/Target/Alpha/AlphaSelectionDAGInfo.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/Target/Alpha/AlphaSelectionDAGInfo.h b/lib/Target/Alpha/AlphaSelectionDAGInfo.h
deleted file mode 100644
index 3405cc0..0000000
--- a/lib/Target/Alpha/AlphaSelectionDAGInfo.h
+++ /dev/null
@@ -1,31 +0,0 @@
-//===-- AlphaSelectionDAGInfo.h - Alpha SelectionDAG Info -------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file defines the Alpha subclass for TargetSelectionDAGInfo.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef ALPHASELECTIONDAGINFO_H
-#define ALPHASELECTIONDAGINFO_H
-
-#include "llvm/Target/TargetSelectionDAGInfo.h"
-
-namespace llvm {
-
-class AlphaTargetMachine;
-
-class AlphaSelectionDAGInfo : public TargetSelectionDAGInfo {
-public:
- explicit AlphaSelectionDAGInfo(const AlphaTargetMachine &TM);
- ~AlphaSelectionDAGInfo();
-};
-
-}
-
-#endif