Reid Spencer | 362cbf0 | 2004-11-06 08:51:45 +0000 | [diff] [blame] | 1 | //===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Reid Spencer and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Builds up standard unix archive files (.a) containing LLVM bytecode. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ArchiveInternals.h" |
| 15 | |
| 16 | using namespace llvm; |
| 17 | |
| 18 | Archive::Archive() { |
| 19 | } |
| 20 | |
| 21 | Archive::~Archive() { |
| 22 | } |
| 23 | |
| 24 | // vim: sw=2 ai |