LLVM API Documentation
00001 //===-- MSP430SelectionDAGInfo.h - MSP430 SelectionDAG Info -----*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines the MSP430 subclass for TargetSelectionDAGInfo. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_MSP430_MSP430SELECTIONDAGINFO_H 00015 #define LLVM_LIB_TARGET_MSP430_MSP430SELECTIONDAGINFO_H 00016 00017 #include "llvm/Target/TargetSelectionDAGInfo.h" 00018 00019 namespace llvm { 00020 00021 class MSP430TargetMachine; 00022 00023 class MSP430SelectionDAGInfo : public TargetSelectionDAGInfo { 00024 public: 00025 explicit MSP430SelectionDAGInfo(const DataLayout &DL); 00026 ~MSP430SelectionDAGInfo(); 00027 }; 00028 00029 } 00030 00031 #endif