buildtools/gcc/isl/isl_printer_private.h
Fredrik Holmqvist 0b514caa50 Move isl inside gcc dir
Moving it inside gcc dir allows gcc to detect and build isl while
building gcc. It has dependencies on other libraries that would
need to be prebuilt if we build it ourselves.

This is one of a few steps in building gcc with isl and allowing graphite
optimization flags.
2018-07-04 20:20:55 +02:00

18 lines
280 B
C

#include <isl/printer.h>
struct isl_printer_ops;
struct isl_printer {
struct isl_ctx *ctx;
struct isl_printer_ops *ops;
FILE *file;
int buf_n;
int buf_size;
char *buf;
int indent;
int output_format;
const char *prefix;
const char *suffix;
int width;
};