From: pinskia Date: Tue, 4 Oct 2005 17:25:50 +0000 (+0000) Subject: +2005-10-04 Andrew Pinski X-Git-Tag: upstream/4.9.2~58352 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3a17dfe7c4bf1fe7777f1856ccdba7084c7e15e;p=platform%2Fupstream%2Flinaro-gcc.git +2005-10-04 Andrew Pinski + + * tree.c (annotate_with_file_line): Fix typo. + git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104950 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25a14cb..088f0e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-10-04 Andrew Pinski + + * tree.c (annotate_with_file_line): Fix typo. + 2005-10-04 Ulrich Weigand PR ada/19382 diff --git a/gcc/tree.c b/gcc/tree.c index 4140791..333c745 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -3151,7 +3151,7 @@ annotate_with_file_line (tree node, const char *file, int line) entry cache can reduce the number of allocations by more than half. */ if (last_annotated_node - && last_annotated_node->line == line == line + && last_annotated_node->line == line && (last_annotated_node->file == file || !strcmp (last_annotated_node->file, file))) {