summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly/CWriter.h
diff options
context:
space:
mode:
authorSumant Kowshik <kowshik@uiuc.edu>2002-05-08 18:09:58 +0000
committerSumant Kowshik <kowshik@uiuc.edu>2002-05-08 18:09:58 +0000
commit9ddc86c6e51617d1170eed07a4320edf6679f655 (patch)
treec0aa7870ac7f39c669a35b77fcf2ed4fe4e063ef /include/llvm/Assembly/CWriter.h
parent73e6298c9a645b60306e67dbd24ebc408c1b9d5d (diff)
downloadllvm-9ddc86c6e51617d1170eed07a4320edf6679f655.tar.gz
llvm-9ddc86c6e51617d1170eed07a4320edf6679f655.tar.bz2
llvm-9ddc86c6e51617d1170eed07a4320edf6679f655.tar.xz
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly/CWriter.h')
-rw-r--r--include/llvm/Assembly/CWriter.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/llvm/Assembly/CWriter.h b/include/llvm/Assembly/CWriter.h
new file mode 100644
index 0000000000..b42e16c196
--- /dev/null
+++ b/include/llvm/Assembly/CWriter.h
@@ -0,0 +1,21 @@
+//===-- llvm/CGen/Writer.h - Printer for VM assembly files -------*- C++ -*--=//
+//
+// This functionality is implemented by the lib/CWriter library.
+// This library is used to print C language files to an iostream.
+//
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_C_WRITER_H
+#define LLVM_C_WRITER_H
+
+class Module;
+
+#include <iosfwd>
+
+void WriteToC(const Module *Module, std::ostream &o);
+
+#endif
+
+
+