2009-07-25 12:09:50 +02:00
|
|
|
//===-- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-19 01:03:22 +02:00
|
|
|
#include "SystemZ.h"
|
2009-07-16 16:36:52 +02:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-19 01:03:22 +02:00
|
|
|
Target llvm::TheSystemZTarget;
|
2009-07-16 16:36:52 +02:00
|
|
|
|
|
|
|
extern "C" void LLVMInitializeSystemZTargetInfo() {
|
2009-07-26 07:03:33 +02:00
|
|
|
RegisterTarget<Triple::systemz> X(TheSystemZTarget, "systemz", "SystemZ");
|
2009-07-16 16:36:52 +02:00
|
|
|
}
|