https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106782

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 53526
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53526&action=edit
gcc13-pr106782.patch

I have actually fixed most of these warnings.
There is one remaining though and I have no idea what to do about that:
../../gcc/tree-vect-slp-patterns.cc: In function ‘bool
vect_pattern_validate_optab(internal_fn, slp_tree)’:
../../gcc/tree-vect-slp-patterns.cc:99:72: warning: format ‘%T’ expects
argument of type ‘tree_node*’, but argument 4 has type ‘int’ [-Wformat=]
   99 |                              "Target does not support vector type for
%T\n",
      |                                                                      
~^
      |                                                                       
|
      |                                                                       
tree_node*
      |                                                                      
%d
SLP_TREE_DEF_TYPE (node) is indeed an enum, while %T expects a tree.
Added in r11-5969-g3ed472af6bc9f83b7a8a

Reply via email to