LLVM API Documentation
00001 //===-- MSP430TargetInfo.cpp - MSP430 Target Implementation ---------------===// 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 #include "MSP430.h" 00011 #include "llvm/IR/Module.h" 00012 #include "llvm/Support/TargetRegistry.h" 00013 using namespace llvm; 00014 00015 Target llvm::TheMSP430Target; 00016 00017 extern "C" void LLVMInitializeMSP430TargetInfo() { 00018 RegisterTarget<Triple::msp430> 00019 X(TheMSP430Target, "msp430", "MSP430 [experimental]"); 00020 }