24 lines
502 B
C
24 lines
502 B
C
#ifndef GCC_PLUGIN_INCLUDES_H
|
|
#define GCC_PLUGIN_INCLUDES_H
|
|
|
|
#include <gcc-plugin.h>
|
|
#include <plugin-version.h>
|
|
#include <tree.h>
|
|
#include <gimple.h>
|
|
#include <gimplify.h>
|
|
#include <gimple-iterator.h>
|
|
#include <basic-block.h>
|
|
#include <gimple-ssa.h>
|
|
#include <tree-pass.h>
|
|
#include <pretty-print.h>
|
|
#include <tree-pretty-print.h>
|
|
#include <diagnostic.h>
|
|
#include <gimple-pretty-print.h>
|
|
#include <obstack.h>
|
|
#include <cgraph.h>
|
|
#include <context.h>
|
|
#include <function.h>
|
|
#include <builtins.h>
|
|
|
|
#endif
|