2002-08-31 00:28:25 +00:00
|
|
|
//===-- llvm/Assembly/CWriter.h - C Printer for LLVM programs --*- C++ -*--===//
|
2002-05-08 18:09:58 +00:00
|
|
|
//
|
2002-08-31 00:28:25 +00:00
|
|
|
// This functionality is implemented by the lib/CWriter library. This library
|
|
|
|
// is used to print C language files to an iostream.
|
2002-05-08 18:09:58 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-08-31 00:28:25 +00:00
|
|
|
#ifndef LLVM_ASSEMBLY_CWRITER_H
|
|
|
|
#define LLVM_ASSEMBLY_CWRITER_H
|
2002-05-08 18:09:58 +00:00
|
|
|
|
|
|
|
#include <iosfwd>
|
2002-08-31 00:28:25 +00:00
|
|
|
class Pass;
|
|
|
|
Pass *createWriteToCPass(std::ostream &o);
|
2002-05-08 18:09:58 +00:00
|
|
|
|
|
|
|
#endif
|