the various ConstantExpr::get*Ty methods existed to work with issues around
[llvm/stm8.git] / lib / Target / CellSPU / SPUSelectionDAGInfo.h
blob39257d92c4006bfddefe29b0768889bc132c83d6
1 //===-- SPUSelectionDAGInfo.h - CellSPU SelectionDAG Info -------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the CellSPU subclass for TargetSelectionDAGInfo.
12 //===----------------------------------------------------------------------===//
14 #ifndef CELLSPUSELECTIONDAGINFO_H
15 #define CELLSPUSELECTIONDAGINFO_H
17 #include "llvm/Target/TargetSelectionDAGInfo.h"
19 namespace llvm {
21 class SPUTargetMachine;
23 class SPUSelectionDAGInfo : public TargetSelectionDAGInfo {
24 public:
25 explicit SPUSelectionDAGInfo(const SPUTargetMachine &TM);
26 ~SPUSelectionDAGInfo();
31 #endif