RFC Possible typo find_base_decl alias.c

Graham Stott grahams@redhat.com
Thu Apr 26 10:20:00 GMT 2001


All

It looks to me like find_base_decl in alias.c has an obvious typo
in the following section of code.

    case '3':
      d0 = find_base_decl (TREE_OPERAND (t, 0));
      d1 = find_base_decl (TREE_OPERAND (t, 1));
      d0 = find_base_decl (TREE_OPERAND (t, 0));
      d2 = find_base_decl (TREE_OPERAND (t, 2));

I suspect it should be

    case '3':
      d0 = find_base_decl (TREE_OPERAND (t, 0));
      d1 = find_base_decl (TREE_OPERAND (t, 1));
      d2 = find_base_decl (TREE_OPERAND (t, 2));

Comments.

Graham



More information about the Gcc mailing list