Nate Begeman | fb5792f | 2005-07-12 01:41:54 +0000 | [diff] [blame^] | 1 | //===-- TargetSubtarget.cpp - General Target Information -------------------==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Nate Begeman and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file describes the general parts of a Subtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/Target/TargetSubtarget.h" |
| 15 | using namespace llvm; |
| 16 | |
| 17 | //--------------------------------------------------------------------------- |
| 18 | // TargetSubtarget Class |
| 19 | // |
| 20 | TargetSubtarget::TargetSubtarget(const Module &M) {} |
| 21 | |
| 22 | TargetSubtarget::~TargetSubtarget() {} |