LLVM API Documentation
00001 //===-- XCoreTargetInfo.cpp - XCore 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 "XCore.h" 00011 #include "llvm/IR/Module.h" 00012 #include "llvm/Support/TargetRegistry.h" 00013 using namespace llvm; 00014 00015 Target llvm::TheXCoreTarget; 00016 00017 extern "C" void LLVMInitializeXCoreTargetInfo() { 00018 RegisterTarget<Triple::xcore> X(TheXCoreTarget, "xcore", "XCore"); 00019 }