First kinda/sorta working version of the Archive library. Reading is not
[oota-llvm.git] / lib / Bytecode / Archive / Archive.cpp
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