From: pinskia Date: Tue, 4 Oct 2005 17:25:50 +0000 (+0000) Subject: +2005-10-04 Andrew Pinski X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3a17dfe7c4bf1fe7777f1856ccdba7084c7e15e;p=thirdparty%2Fgcc.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 25a14cb6dc94..088f0e7f0f83 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 4140791e0788..333c745fc014 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))) {