diff options
Diffstat (limited to 'gcc/tree-inline.h')
-rw-r--r-- | gcc/tree-inline.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/tree-inline.h b/gcc/tree-inline.h index 76ac17adcee..f04a3f0a843 100644 --- a/gcc/tree-inline.h +++ b/gcc/tree-inline.h @@ -22,7 +22,7 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_TREE_INLINE_H #define GCC_TREE_INLINE_H -#include "pointer-set.h" +#include "gimple.h" struct cgraph_edge; @@ -117,6 +117,15 @@ typedef struct copy_body_data /* Entry basic block to currently copied body. */ struct basic_block_def *entry_bb; + + /* Debug statements that need processing. */ + VEC(gimple,heap) *debug_stmts; + + /* A map from local declarations in the inlined function to + equivalents in the function into which it is being inlined, where + the originals have been mapped to a value rather than to a + variable. */ + struct pointer_map_t *debug_map; } copy_body_data; /* Weights of constructions for estimate_num_insns. */ |