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]

[PATCH] Fix typo in cexpi expansion


.. so where's this brown paper bag? :/

Applied to mainline.

Richard.

Index: ChangeLog
===================================================================
*** ChangeLog	(revision 119833)
--- ChangeLog	(working copy)
***************
*** 1,3 ****
--- 1,7 ----
+ 2006-12-13  Richard Guenther  <rguenther@suse.de>
+ 
+ 	* builtins.c (expand_builtin_cexpi): Fix typo.
+ 
  2006-12-13  Jan Hubicka  <jh@suse.cz>
  
  	* Makefile.in: Add dependencies.
Index: builtins.c
===================================================================
*** builtins.c	(revision 119833)
--- builtins.c	(working copy)
*************** expand_builtin_cexpi (tree exp, rtx targ
*** 2279,2285 ****
        /* Make sure not to fold the sincos call again.  */
        call = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
        expand_normal (build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
! 			     call, arglist, NULL_TREE));
      }
  
    /* Now build the proper return type.  */
--- 2279,2285 ----
        /* Make sure not to fold the sincos call again.  */
        call = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
        expand_normal (build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
! 			     call, narglist, NULL_TREE));
      }
  
    /* Now build the proper return type.  */


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