diff options
Diffstat (limited to 'gcc/tree-inline.h')
-rw-r--r-- | gcc/tree-inline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-inline.h b/gcc/tree-inline.h index 998494e1aaa..e191105e049 100644 --- a/gcc/tree-inline.h +++ b/gcc/tree-inline.h @@ -23,7 +23,7 @@ Boston, MA 02110-1301, USA. */ #define GCC_TREE_INLINE_H #include "varray.h" -#include "splay-tree.h" +#include "pointer-set.h" /* Data required for function body duplication. */ @@ -49,7 +49,7 @@ typedef struct copy_body_data tree retvar; /* The map from local declarations in the inlined function to equivalents in the function into which it is being inlined. */ - splay_tree decl_map; + struct pointer_map_t *decl_map; /* Create a new decl to replace DECL in the destination function. */ tree (*copy_decl) (tree, struct copy_body_data *); |