aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-04-07 21:01:22 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-04-07 21:01:22 +0000
commitc326c92ca8b4c2cf350a8b549222021b4555ca69 (patch)
tree88dc51ed1a7106f74de0f1c9bcf03e8968745e73
parent8089822a8c0dd77dfa8e46d1b72149855b3c1eed (diff)
This file is no longer used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12767 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/InstrSelectionSupport.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/include/llvm/CodeGen/InstrSelectionSupport.h b/include/llvm/CodeGen/InstrSelectionSupport.h
deleted file mode 100644
index c1fba48615..0000000000
--- a/include/llvm/CodeGen/InstrSelectionSupport.h
+++ /dev/null
@@ -1,52 +0,0 @@
-//===-- llvm/CodeGen/InstrSelectionSupport.h --------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Target-independent instruction selection code. See SparcInstrSelection.cpp
-// for usage.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CODEGEN_INSTR_SELECTION_SUPPORT_H
-#define LLVM_CODEGEN_INSTR_SELECTION_SUPPORT_H
-
-#include "llvm/CodeGen/MachineInstr.h"
-#include "Support/DataTypes.h"
-
-namespace llvm {
-
-class InstructionNode;
-class TargetMachine;
-class Instruction;
-
-//---------------------------------------------------------------------------
-// Function: ChooseRegOrImmed
-//
-// Purpose:
-//
-//---------------------------------------------------------------------------
-
-MachineOperand::MachineOperandType ChooseRegOrImmed(
- Value* val,
- MachineOpCode opCode,
- const TargetMachine& targetMachine,
- bool canUseImmed,
- unsigned& getMachineRegNum,
- int64_t& getImmedValue);
-
-MachineOperand::MachineOperandType ChooseRegOrImmed(int64_t intValue,
- bool isSigned,
- MachineOpCode opCode,
- const TargetMachine& target,
- bool canUseImmed,
- unsigned& getMachineRegNum,
- int64_t& getImmedValue);
-
-} // End llvm namespace
-
-#endif