This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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: "conflicts" on stderr


On 10 July 2007 17:37, NightStrike wrote:

> When compiling binutils, I see a number of messages outputted to
> stderr similar to the following:
> 
> conflicts: 52 shift/reduce, 10 reduce/reduce
> 
> What do these lines mean?

  It's an informational message from bison when it analyses the grammar in a
.y file.  The amount of conflicts govern the potential amount of backtracking
the parser has to do as they represent situations in which the grammar
requires disambiguation.  In general the fewer the better because the parser
will run quicker, but it's not a bug.

    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


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