diff options
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index fdf34d1..5b317c7 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -505,9 +505,9 @@ create_tmp_var (tree type, const char *prefix) I.E. given <temp> = &A, return A. */ const char * -get_name (tree t) +get_name (const_tree t) { - tree stripped_decl; + const_tree stripped_decl; stripped_decl = t; STRIP_NOPS (stripped_decl); |