diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-06 08:51:45 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-06 08:51:45 +0000 |
commit | 362cbf0d747154f2617f2cabe20187235dcaba60 (patch) | |
tree | 8a9eece69846f269562360e75f8f19c8612ab107 /lib/Bytecode/Archive/Archive.cpp | |
parent | 07adb2836b8aa7a3872e33c285958f5937662b50 (diff) |
First kinda/sorta working version of the Archive library. Reading is not
yet supported but writing works. Way too early to review this. More to come
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17499 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Archive/Archive.cpp')
-rw-r--r-- | lib/Bytecode/Archive/Archive.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Bytecode/Archive/Archive.cpp b/lib/Bytecode/Archive/Archive.cpp new file mode 100644 index 0000000000..e9fcd2ebe1 --- /dev/null +++ b/lib/Bytecode/Archive/Archive.cpp @@ -0,0 +1,24 @@ +//===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Reid Spencer and is distributed under the +// University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// Builds up standard unix archive files (.a) containing LLVM bytecode. +// +//===----------------------------------------------------------------------===// + +#include "ArchiveInternals.h" + +using namespace llvm; + +Archive::Archive() { +} + +Archive::~Archive() { +} + +// vim: sw=2 ai |