diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-12-18 08:27:59 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-12-18 08:27:59 +0000 |
commit | 773a8fb6ab38682f470e81ad9201b5d7919dd6ac (patch) | |
tree | b50257fbf2f000c0610ae0635ca7baa7d06aff08 /lld/lib/Core/File.cpp | |
parent | 0b973d091a1f571e626306632fbb0ba3be8fc07c (diff) | |
download | bcm5719-llvm-773a8fb6ab38682f470e81ad9201b5d7919dd6ac.tar.gz bcm5719-llvm-773a8fb6ab38682f470e81ad9201b5d7919dd6ac.zip |
Initial commit. Code by Nick Kledzik. Cleanups and build system by me.
llvm-svn: 146844
Diffstat (limited to 'lld/lib/Core/File.cpp')
-rw-r--r-- | lld/lib/Core/File.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lld/lib/Core/File.cpp b/lld/lib/Core/File.cpp new file mode 100644 index 00000000000..e123d5ec192 --- /dev/null +++ b/lld/lib/Core/File.cpp @@ -0,0 +1,16 @@ +//===- Core/File.cpp - A Contaier of Atoms --------------------------------===// +// +// The LLVM Linker +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "lld/Core/File.h" + +namespace lld { + +File::~File() {} + +} |