aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SimpleBBISel.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-08-20 17:50:32 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-08-20 17:50:32 +0000
commitd4207893014f2d36f31fce607405336fc38cd4b7 (patch)
tree5de687a999ce007eef5ad8d95b4566e92a9969a2 /lib/CodeGen/SelectionDAG/SimpleBBISel.cpp
parent98f8ccfad06c8928d899f506731987f951b2ebe4 (diff)
Kill off SimpleBBISel, it's replaced by FastISel.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55067 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SimpleBBISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SimpleBBISel.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/CodeGen/SelectionDAG/SimpleBBISel.cpp b/lib/CodeGen/SelectionDAG/SimpleBBISel.cpp
deleted file mode 100644
index 1200cd3b0d..0000000000
--- a/lib/CodeGen/SelectionDAG/SimpleBBISel.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-//===-- SimpleBBISel.cpp - Implement the SimpleBBISel class ---------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This implements simple basic block instruction selection. If the given
-// BasicBlock is considered "simple", i.e. all operations are supported by
-// the target and their types are legal, it does instruction directly from
-// LLVM BasicBlock to MachineInstr's.
-//
-//===----------------------------------------------------------------------===//
-
-#define DEBUG_TYPE "simple-isel"
-#include "SimpleBBISel.h"
-#include "llvm/CodeGen/MachineFunction.h"
-#include "llvm/CodeGen/MachineInstrBuilder.h"
-#include "llvm/CodeGen/SelectionDAG.h"
-using namespace llvm;
-
-/// SelectBasicBlock - Try to convert a LLVM basic block into a
-/// MachineBasicBlock using simple instruction selection. Returns false if it
-/// is not able to do so.
-bool SimpleBBISel::SelectBasicBlock(BasicBlock *BB, MachineBasicBlock *MBB) {
- return false;
-}