aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PTX/PTXSubtarget.cpp
blob: 00e2c882a5ca6e364b62738d98b81bb841686e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===- PTXSubtarget.cpp - PTX Subtarget Information ---------------*- C++ -*-=//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the PTX specific subclass of TargetSubtarget.
//
//===----------------------------------------------------------------------===//

#include "PTXSubtarget.h"

using namespace llvm;

PTXSubtarget::PTXSubtarget(const std::string &TT, const std::string &FS) {
  std::string TARGET = "sm_20";
  // TODO: call ParseSubtargetFeatures(FS, TARGET);
}

#include "PTXGenSubtarget.inc"