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 | 0cc653e59b6efb0cedbc97e4ff5fb108085bfd33 (patch) | |
tree | 418ab48e6fd39d24a57de241834ee81bca8aa64f /llvm/lib/Bytecode/Archive/Archive.cpp | |
parent | 0c6a283b2ab8f921e30686984ccfa89c07296d3e (diff) | |
download | bcm5719-llvm-0cc653e59b6efb0cedbc97e4ff5fb108085bfd33.tar.gz bcm5719-llvm-0cc653e59b6efb0cedbc97e4ff5fb108085bfd33.zip |
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
llvm-svn: 17499
Diffstat (limited to 'llvm/lib/Bytecode/Archive/Archive.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Archive/Archive.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/llvm/lib/Bytecode/Archive/Archive.cpp b/llvm/lib/Bytecode/Archive/Archive.cpp new file mode 100644 index 00000000000..e9fcd2ebe16 --- /dev/null +++ b/llvm/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 |