Commit 7e7d75c1 by Diego Novillo Committed by Diego Novillo

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
parent 854f9272
2012-09-05 Diego Novillo <dnovillo@google.com>
PR bootstrap/54484
* vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN
argument.
2012-09-05 Jakub Jelinek <jakub@redhat.com>
PR middle-end/54486
......
......@@ -1075,7 +1075,7 @@ vec_t<T>::lower_bound (T obj, bool (*lessthan)(T, T)) const
template<typename T>
unsigned
vec_t<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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment