diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-04 06:16:50 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-04 06:16:50 +0000 |
commit | a9d9ca469fd2442e1352028a7a69d23de0a4cbd5 (patch) | |
tree | 1cc86a7633ebef71e2d32579d565a88de85c4848 /tools/llvm2cpp/CppWriter.h | |
parent | f6055806d4a6a39c49c441215a9a5d3a8e933de0 (diff) |
Drop llvm2cpp, it's now a llc target
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm2cpp/CppWriter.h')
-rw-r--r-- | tools/llvm2cpp/CppWriter.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/llvm2cpp/CppWriter.h b/tools/llvm2cpp/CppWriter.h deleted file mode 100644 index 4fd35db512..0000000000 --- a/tools/llvm2cpp/CppWriter.h +++ /dev/null @@ -1,18 +0,0 @@ -//===--- CppWriter.h - Generate C++ IR to C++ Source Interface ------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file declares a function, WriteModuleToCppFile that will convert a -// Module into the corresponding C++ code to construct the same module. -// -//===------------------------------------------------------------------------=== -#include <ostream> -namespace llvm { -class Module; -void WriteModuleToCppFile(Module* mod, std::ostream& out); -} |