From: Diego Novillo Date: Wed, 5 Sep 2012 16:34:42 +0000 (-0400) Subject: re PR bootstrap/54484 (r190927 breaks bootstrap with clang compiler) X-Git-Tag: upstream/12.2.0~74424 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e7d75c136783cb9e4270578654e02fcfcd3917f;p=platform%2Fupstream%2Fgcc.git re PR bootstrap/54484 (r190927 breaks bootstrap with clang compiler) PR bootstrap/54484 * vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN argument. From-SVN: r190988 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8bfc5ce..978b47d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-09-05 Diego Novillo + + PR bootstrap/54484 + * vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN + argument. + 2012-09-05 Jakub Jelinek PR middle-end/54486 diff --git a/gcc/vec.h b/gcc/vec.h index 441c9b5..fbf95d2 100644 --- a/gcc/vec.h +++ b/gcc/vec.h @@ -1075,7 +1075,7 @@ vec_t::lower_bound (T obj, bool (*lessthan)(T, T)) const template unsigned vec_t::lower_bound (const T *ptr, - bool (*lessthan_)(const T *, const T *)) const + bool (*lessthan)(const T *, const T *)) const { unsigned int len = VEC_length (T, this); unsigned int half, middle;