1 //===- PTXSubtarget.cpp - PTX Subtarget Information ---------------*- C++ -*-=//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the PTX specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #include "PTXSubtarget.h"
18 PTXSubtarget::PTXSubtarget(const std::string
&TT
, const std::string
&FS
) {
19 std::string TARGET
= "sm_20";
20 // TODO: call ParseSubtargetFeatures(FS, TARGET);
23 #include "PTXGenSubtarget.inc"