2005-07-12 01:41:54 +00:00
|
|
|
//===-- TargetSubtarget.cpp - General Target Information -------------------==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2005-07-27 06:12:32 +00:00
|
|
|
// This file was developed by Nate Begeman and is distributed under the
|
2005-07-12 01:41:54 +00: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 02:59:38 +00:00
|
|
|
TargetSubtarget::TargetSubtarget() {}
|
2005-07-12 01:41:54 +00:00
|
|
|
|
|
|
|
TargetSubtarget::~TargetSubtarget() {}
|