diff options
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index 120f7b9..c595bbd 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -188,14 +188,14 @@ check_asm_operands (rtx x) /* Static data for the next two routines. */ -typedef struct change_t +struct change_t { rtx object; int old_code; rtx *loc; rtx old; bool unshare; -} change_t; +}; static change_t *changes; static int changes_allocated; |