aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp
blob: 09a27358da9fc781d040fe7ab82bc17a95f9f1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//===-- PTXTargetInfo.cpp - PTX Target Implementation ---------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "PTX.h"
#include "llvm/Module.h"
#include "llvm/Support/TargetRegistry.h"

using namespace llvm;

Target llvm::ThePTX32Target;
Target llvm::ThePTX64Target;

extern "C" void LLVMInitializePTXTargetInfo() {
  // see llvm/ADT/Triple.h
  RegisterTarget<Triple::ptx32> X32(ThePTX32Target, "ptx32",
                                    "PTX (32-bit) [Experimental]");
  RegisterTarget<Triple::ptx64> X64(ThePTX64Target, "ptx64",
                                    "PTX (64-bit) [Experimental]");
}