blob: 0f907c19317fd6e4b8a1f32b7e76e0d95cacb45c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//===-- llvm/Assembly/CWriter.h - C Printer for LLVM programs ---*- C++ -*-===//
//
// This functionality is implemented by the lib/CWriter library. This library
// is used to print C language files to an iostream.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_ASSEMBLY_CWRITER_H
#define LLVM_ASSEMBLY_CWRITER_H
#include <iosfwd>
class Pass;
Pass *createWriteToCPass(std::ostream &o);
#endif
|