LLVM API Documentation
00001 //===-- SystemZTargetInfo.cpp - SystemZ 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 "SystemZ.h" 00011 #include "llvm/Support/TargetRegistry.h" 00012 00013 using namespace llvm; 00014 00015 Target llvm::TheSystemZTarget; 00016 00017 extern "C" void LLVMInitializeSystemZTargetInfo() { 00018 RegisterTarget<Triple::systemz, /*HasJIT=*/true> 00019 X(TheSystemZTarget, "systemz", "SystemZ"); 00020 }