blob: a577d7755af5aa0ec70fdd1d7daad8e7d8496568 [file] [log] [blame]
Nick Lewyckyf7a3c502010-09-07 18:14:24 +00001//===-- PTXTargetInfo.cpp - PTX 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 "PTX.h"
11#include "llvm/Module.h"
12#include "llvm/Target/TargetRegistry.h"
13
14using namespace llvm;
15
16Target llvm::ThePTXTarget;
17
Eric Christopher50880d02010-09-18 18:52:28 +000018extern "C" void LLVMInitializePTXTargetInfo() {
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000019 // see llvm/ADT/Triple.h
20 RegisterTarget<Triple::ptx> X(ThePTXTarget, "ptx", "PTX");
21}