This is the mail archive of the gcc-patches@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]
Other format: [Raw text]

i386 builtins. fix typos


committed as obvious.

2002-06-30  Aldy Hernandez  <aldyh@redhat.com>

	* config/i386/i386.c (ix86_init_mmx_sse_builtins): Fix typos.


Index: config/i386/i386.c
===================================================================
RCS file: /cvs/uberbaum/gcc/config/i386/i386.c,v
retrieving revision 1.426
diff -c -p -r1.426 i386.c
*** config/i386/i386.c	30 Jun 2002 01:19:58 -0000	1.426
--- config/i386/i386.c	30 Jun 2002 16:56:12 -0000
*************** ix86_init_mmx_sse_builtins ()
*** 11853,11859 ****
      = build_function_type_list (integer_type_node,
  				V4HI_type_node, integer_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_int_int
!     = build_function_type_list (V4HI_type_node,
  				integer_type_node, integer_type_node,
  				NULL_TREE);
    /* Miscellaneous.  */
--- 11853,11859 ----
      = build_function_type_list (integer_type_node,
  				V4HI_type_node, integer_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_int_int
!     = build_function_type_list (V4HI_type_node, V4HI_type_node,
  				integer_type_node, integer_type_node,
  				NULL_TREE);
    /* Miscellaneous.  */
*************** ix86_init_mmx_sse_builtins ()
*** 11872,11879 ****
  				V4HI_type_node, V4HI_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_int
      = build_function_type_list (V4HI_type_node,
! 				V4HI_type_node, V4HI_type_node,
! 				integer_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_di
      = build_function_type_list (V4HI_type_node,
  				V4HI_type_node, long_long_unsigned_type_node,
--- 11872,11878 ----
  				V4HI_type_node, V4HI_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_int
      = build_function_type_list (V4HI_type_node,
! 				V4HI_type_node, integer_type_node, NULL_TREE);
    tree v4hi_ftype_v4hi_di
      = build_function_type_list (V4HI_type_node,
  				V4HI_type_node, long_long_unsigned_type_node,


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