blob: e9fcd2ebe16d590d8a79a4ea6711abd6a1ce8d56 [file] [log] [blame]
Reid Spencer362cbf02004-11-06 08:51:45 +00001//===-- 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
16using namespace llvm;
17
18Archive::Archive() {
19}
20
21Archive::~Archive() {
22}
23
24// vim: sw=2 ai