1 //===-- Nios2TargetInfo.cpp - Nios2 Target Implementation -----------------===// 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 #include "Nios2.h" 11 #include "llvm/Support/TargetRegistry.h" 12 13 using namespace llvm; 14 getTheNios2Target()15Target &llvm::getTheNios2Target() { 16 static Target TheNios2Target; 17 return TheNios2Target; 18 } 19 LLVMInitializeNios2TargetInfo()20extern "C" void LLVMInitializeNios2TargetInfo() { 21 RegisterTarget<Triple::nios2, 22 /*HasJIT=*/true> 23 X(getTheNios2Target(), "nios2", "Nios2", "Nios2"); 24 } 25