From: Andreas Schwab Date: Tue, 23 Apr 2013 09:05:31 +0000 (+0000) Subject: coretypes.h (gimple_stmt_iterator): Add struct to make compatible with C. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08c52234765066a487d3341f0f4797dbcff83bfd;p=gcc.git coretypes.h (gimple_stmt_iterator): Add struct to make compatible with C. * coretypes.h (gimple_stmt_iterator): Add struct to make compatible with C. From-SVN: r198176 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fea5059e8e2..376ca5141eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-04-23 Andreas Schwab + + * coretypes.h (gimple_stmt_iterator): Add struct to make + compatible with C. + 2013-04-23 Richard Biener PR tree-optimization/57026 diff --git a/gcc/coretypes.h b/gcc/coretypes.h index 76fc4aabc8a..71d031d689e 100644 --- a/gcc/coretypes.h +++ b/gcc/coretypes.h @@ -63,7 +63,7 @@ typedef union gimple_statement_d *gimple; typedef const union gimple_statement_d *const_gimple; typedef gimple gimple_seq; struct gimple_stmt_iterator_d; -typedef gimple_stmt_iterator_d gimple_stmt_iterator; +typedef struct gimple_stmt_iterator_d gimple_stmt_iterator; union section; typedef union section section; struct gcc_options;