blob: c6bbaa20c63a0e08557a379c145994b9b6024c9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "auto-host.h"
/* Provide three core typedefs used by everything, if we are compiling
GCC. These used to be found in rtl.h and tree.h, but this is no
longer practical. Providing these here rather that system.h allows
the typedefs to be used everywhere within GCC. */
struct rtx_def;
typedef struct rtx_def *rtx;
struct rtvec_def;
typedef struct rtvec_def *rtvec;
union tree_node;
typedef union tree_node *tree;
|