On Sun, Sep 8, 2013 at 8:00 AM, Paolo Carlini <paolo.carl...@oracle.com> wrote: > Hi all, Gaby, > > in this bug Manuel noticed that the zeros in the diagnostic lines of the > form: > > <built-in>:0:0: .... > > don't provide useful information. Thus the below just avoids printing the > zeros basing directly on the file name: admittedly, it may seem a bit gross, > but in practice the strcmp would often fail early, and should be rather > efficient anyway because the second argument is known at compile-time.
For builtins, we probably do not want to print the line number and the column number (both of which are zero). > > Tested x86_64-linux. > > Thanks, > Paolo. > > ////////////////////////