2005-07-12 03:41:54 +02:00
|
|
|
//===-- TargetSubtarget.cpp - General Target Information -------------------==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2005-07-27 08:12:32 +02:00
|
|
|
// This file was developed by Nate Begeman and is distributed under the
|
2005-07-12 03:41:54 +02:00
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the general parts of a Subtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetSubtarget.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// TargetSubtarget Class
|
|
|
|
//
|
2005-07-12 04:59:38 +02:00
|
|
|
TargetSubtarget::TargetSubtarget() {}
|
2005-07-12 03:41:54 +02:00
|
|
|
|
|
|
|
TargetSubtarget::~TargetSubtarget() {}
|