diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2011-04-18 17:37:13 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2011-04-18 17:37:13 +0000 |
commit | 3eea52efc8ba92e60b11ca681d6aa4ad01134adf (patch) | |
tree | 96b5972e12acce9a8eecb59d0b1568ab48ff020b /gcc | |
parent | e1c2f29025499e433151a9252eabaeef1965acd4 (diff) | |
download | gcc-3eea52efc8ba92e60b11ca681d6aa4ad01134adf.zip gcc-3eea52efc8ba92e60b11ca681d6aa4ad01134adf.tar.gz gcc-3eea52efc8ba92e60b11ca681d6aa4ad01134adf.tar.bz2 |
* dwarf2out.c (is_redundant_typedef): Add 'inline' to prototype.
From-SVN: r172660
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6e12642..2d5dc30 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ +2011-04-18 Eric Botcazou <ebotcazou@adacore.com> + + * dwarf2out.c (is_redundant_typedef): Add 'inline' to prototype. + 2011-04-18 Jie Zhang <jie@codesourcery.com> - Richard Earnshaw <rearnsha@arm.com> + Richard Earnshaw <rearnsha@arm.com> * arm.c (neon_builtin_type_bits): Remove. (typedef enum neon_builtin_mode): New. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index aaf00b1..f3c4c09 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -6565,7 +6565,7 @@ static void gen_typedef_die (tree, dw_die_ref); static void gen_type_die (tree, dw_die_ref); static void gen_block_die (tree, dw_die_ref, int); static void decls_for_scope (tree, dw_die_ref, int); -static int is_redundant_typedef (const_tree); +static inline int is_redundant_typedef (const_tree); static bool is_naming_typedef_decl (const_tree); static inline dw_die_ref get_context_die (tree); static void gen_namespace_die (tree, dw_die_ref); |