1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp

20 lines
614 B
C++
Raw Normal View History

//===-- SystemZTargetInfo.cpp - SystemZ Target Implementation -------------===//
2009-07-16 16:36:52 +02:00
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "SystemZ.h"
2009-07-16 16:36:52 +02:00
#include "llvm/Module.h"
#include "llvm/Target/TargetRegistry.h"
using namespace llvm;
Target llvm::TheSystemZTarget;
2009-07-16 16:36:52 +02:00
extern "C" void LLVMInitializeSystemZTargetInfo() {
RegisterTarget<Triple::systemz> X(TheSystemZTarget, "systemz", "SystemZ");
2009-07-16 16:36:52 +02:00
}