blob: 0608870f47165ba508e3364d9dc2d6e75da90dd5 (
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
|