2003-09-30 18:37:50 +00:00
|
|
|
//===-- llvm/Assembly/CWriter.h - C Printer for LLVM programs ---*- C++ -*-===//
|
2003-10-20 20:19:47 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
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>
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2002-08-31 00:28:25 +00:00
|
|
|
class Pass;
|
|
|
|
Pass *createWriteToCPass(std::ostream &o);
|
2002-05-08 18:09:58 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-05-08 18:09:58 +00:00
|
|
|
#endif
|