From 506868500a53b9181d45596cc7e138dce2f97d9e Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Wed, 19 Aug 2015 02:48:16 +0000 Subject: remove useless typedefs gcc/ChangeLog: 2015-08-11 trevor Saunders * bt-load.c, cgraph.h, dwarf2out.c, dwarf2out.h, final.c, function.c, graphite-scop-detection.c, haifa-sched.c, ipa-devirt.c, ipa-split.c, recog.c, ree.c, stmt.c, tree-data-ref.c, tree-ssa-dom.c, tree-ssa-loop-ivopts.c, varasm.c: Remove typedefs of structs. From-SVN: r227000 --- gcc/final.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/final.c') diff --git a/gcc/final.c b/gcc/final.c index 5d91609..f01f4fc 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1518,14 +1518,14 @@ asm_str_count (const char *templ) /* Structure recording the mapping from source file and directory names at compile time to those to be embedded in debug information. */ -typedef struct debug_prefix_map +struct debug_prefix_map { const char *old_prefix; const char *new_prefix; size_t old_len; size_t new_len; struct debug_prefix_map *next; -} debug_prefix_map; +}; /* Linked list of such structures. */ static debug_prefix_map *debug_prefix_maps; -- cgit v1.1