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]

Re: wide-int, OpenMP


On Wed, Jan 01, 2014 at 05:56:56PM -0800, Mike Stump wrote:
> On Nov 23, 2013, at 11:22 AM, Mike Stump <mikestump@comcast.net> wrote:
> > Richi has asked the we break the wide-int patch so that the individual port and front end maintainers can review their parts without have to go through the entire patch.    This patch covers the OpenMP code.
> > 
> > Ok?
> 
> Ping?
> 

> 	* omp-low.c
> 	(scan_omp_1_op): Use wide-int interfaces.

Ok if the rest of wide int changes is approved.

> --- a/gcc/omp-low.c
> +++ b/gcc/omp-low.c
> @@ -2530,9 +2530,7 @@ scan_omp_1_op (tree *tp, int *walk_subtrees, void *data)
>  	      if (tem != TREE_TYPE (t))
>  		{
>  		  if (TREE_CODE (t) == INTEGER_CST)
> -		    *tp = build_int_cst_wide (tem,
> -					      TREE_INT_CST_LOW (t),
> -					      TREE_INT_CST_HIGH (t));
> +		    *tp = wide_int_to_tree (tem, t);
>  		  else
>  		    TREE_TYPE (t) = tem;
>  		}


	Jakub


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