blob: 00e2c882a5ca6e364b62738d98b81bb841686e60 [file] [log] [blame]
Eric Christopher50880d02010-09-18 18:52:28 +00001//===- PTXSubtarget.cpp - PTX Subtarget Information ---------------*- C++ -*-=//
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// This file implements the PTX specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PTXSubtarget.h"
15
16using namespace llvm;
17
18PTXSubtarget::PTXSubtarget(const std::string &TT, const std::string &FS) {
19 std::string TARGET = "sm_20";
20 // TODO: call ParseSubtargetFeatures(FS, TARGET);
21}
22
23#include "PTXGenSubtarget.inc"