From d3dc32739915ab72218bfd187f66c99f4ed4df2c Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Mon, 21 Oct 2002 18:37:41 +0000 Subject: [PATCH] [multiple changes] 2002-10-21 Matthias Klose * Backport, without whitespace change: 2002-06-19 Akim Demaille * c-parse.in (initelt: identifier ':' initval): Add an empty action to fix a type clash. (aliasdecl, classdef): Add the missing closing `;'. From-SVN: r58371 --- gcc/ChangeLog | 8 ++++++++ gcc/c-parse.in | 3 +++ 2 files changed, 11 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41f08fd32739..68a36caae5a8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2002-10-21 Matthias Klose + + * Backport, without whitespace change: + 2002-06-19 Akim Demaille + * c-parse.in (initelt: identifier ':' initval): Add an empty + action to fix a type clash. + (aliasdecl, classdef): Add the missing closing `;'. + Sat Oct 19 15:49:14 CEST 2002 Jan Hubicka * mmintrin.h (__m64): typedef it to v2si. diff --git a/gcc/c-parse.in b/gcc/c-parse.in index c7cbb16d38ec..2fc4359bf103 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -1527,6 +1527,7 @@ initelt: if (pedantic) pedwarn ("obsolete use of designated initializer with `:'"); } initval + {} | initval ; @@ -2700,12 +2701,14 @@ classdecl: { objc_declare_class ($2); } + ; aliasdecl: ALIAS identifier identifier ';' { objc_declare_alias ($2, $3); } + ; classdef: INTERFACE identifier protocolrefs '{' -- 2.47.2