This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: RFC Possible typo find_base_decl alias.c


  In message <3AE858E6.467832B5@redhat.com>you write:
  > 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));
Agreed. Feel free to go ahead and make the obvious fix to the branch and the
mainline sources.

jeff


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]