*** empty log message ***
[oota-llvm.git] / include / llvm / Assembly / CWriter.h
1 //===-- llvm/CGen/Writer.h - Printer for VM assembly files -------*- C++ -*--=//
2 //
3 // This functionality is implemented by the lib/CWriter library.
4 // This library is used to print C language files to an iostream. 
5 //
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_C_WRITER_H
10 #define LLVM_C_WRITER_H
11
12 class Module;
13
14 #include <iosfwd>
15
16 void WriteToC(const Module  *Module, std::ostream &o);
17
18 #endif
19
20
21