This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Mostly rewrite genrecog


Richard Sandiford <richard.sandiford@arm.com> writes:

> Andreas Schwab <schwab@linux-m68k.org> writes:
>> Richard Sandiford <richard.sandiford@arm.com> writes:
>>
>>> /* Represents a test and the action that should be taken on the result.
>>>    If a transition exists for the test outcome, the machine switches
>>>    to the transition's target state.  If no suitable transition exists,
>>>    the machine either falls through to the next decision or, if there are no
>>>    more decisions to try, fails the match.  */
>>> struct decision : list_head <transition>
>>> {
>>>   decision (const test &);
>>>
>>>   void set_parent (list_head <decision> *s);
>>>   bool if_statement_p (uint64_t * = 0) const;
>>>
>>>   /* The state to which this decision belongs.  */
>>>   state *s;
>>>
>>>   /* Links to other decisions in the same state.  */
>>>   decision *prev, *next;
>>>
>>>   /* The test to perform.  */
>>>   struct test test;
>>> };
>>
>> ../../gcc/genrecog.c:1467: error: declaration of 'test decision::test'
>> ../../gcc/genrecog.c:1051: error: changes meaning of 'test' from 'struct test'
>>
>> Bootstrap compiler is gcc 4.3.4.
>
> Bah.  Does it like "::test test" instead of "struct test test"?

Same error.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]