+2012-09-04  Diego Novillo  <dnovillo@google.com>
+
+       PR bootstrap/54484
+       * vec.h (vec_t::embedded_init): Move default argument value
+       to function declaration.
+
 2012-09-04  Eric Botcazou  <ebotcazou@adacore.com>
 
        * bb-reorder.c (gate_handle_reorder_blocks): Move around.
 
   T &last (ALONE_VEC_CHECK_DECL);
   const T &operator[] (unsigned) const;
   T &operator[] (unsigned);
-  void embedded_init (int, int);
+  void embedded_init (int, int = 0);
 
   template<enum vec_allocation_t A>
   vec_t<T> *copy (ALONE_MEM_STAT_DECL);
    final member):
 
    size_t vec_t<T>::embedded_size<T> (int reserve);
-   void v->embedded_init(int reserve, int active = 0);
+   void v->embedded_init(int reserve, int active);
 
    These allow the caller to perform the memory allocation.  */
 
 
 template<typename T>
 void
-vec_t<T>::embedded_init (int nelems, int active = 0)
+vec_t<T>::embedded_init (int nelems, int active)
 {
   prefix_.num_ = active;
   prefix_.alloc_ = nelems;