aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2005-10-04 17:25:50 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2005-10-04 10:25:50 -0700
commit44d251729691376ab96450f3b8e580a87c055b95 (patch)
treeb496021845db29f9c35889c43e567b4136d475cb /gcc/tree.c
parentbaab454a0a9fac4ea49d1b2761f64f5bba70d47c (diff)
downloadgcc-44d251729691376ab96450f3b8e580a87c055b95.zip
gcc-44d251729691376ab96450f3b8e580a87c055b95.tar.gz
gcc-44d251729691376ab96450f3b8e580a87c055b95.tar.bz2
+2005-10-04 Andrew Pinski <pinskia@physics.uc.edu> + + * tree.c (annotate_with_file_line): Fix typo.
+2005-10-04 Andrew Pinski <pinskia@physics.uc.edu> + + * tree.c (annotate_with_file_line): Fix typo. + From-SVN: r104950
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 1 insertions, 1 deletions
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)))
{