1 //====-- MSP430Subtarget.h - Define Subtarget for the MSP430 ---*- C++ -*--===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the MSP430 specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TARGET_MSP430_SUBTARGET_H
15 #define LLVM_TARGET_MSP430_SUBTARGET_H
17 #include "llvm/Target/TargetSubtarget.h"
23 class MSP430Subtarget
: public TargetSubtarget
{
26 /// This constructor initializes the data members to match that
27 /// of the specified triple.
29 MSP430Subtarget(const std::string
&TT
, const std::string
&FS
);
31 /// ParseSubtargetFeatures - Parses features string setting specified
32 /// subtarget options. Definition of function is auto generated by tblgen.
33 std::string
ParseSubtargetFeatures(const std::string
&FS
,
34 const std::string
&CPU
);
36 } // End llvm namespace
38 #endif // LLVM_TARGET_MSP430_SUBTARGET_H