On Wed, Jan 01, 2014 at 05:56:56PM -0800, Mike Stump wrote: > On Nov 23, 2013, at 11:22 AM, Mike Stump <mikest...@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