svn commit: r226430 - head/contrib/gcc/config/i386

Stefan Farfeleder stefanf at FreeBSD.org
Sun Oct 16 11:39:07 UTC 2011


On Sun, Oct 16, 2011 at 12:25:14PM +0200, Roman Divacky wrote:
> Can this be MFCed to stable/9 ? I've seen clang erroring out
> because of this quite a lot.

Yes I think so.

Stefan

> On Sun, Oct 16, 2011 at 10:14:33AM +0000, Stefan Farfeleder wrote:
> > Author: stefanf
> > Date: Sun Oct 16 10:14:33 2011
> > New Revision: 226430
> > URL: http://svn.freebsd.org/changeset/base/226430
> > 
> > Log:
> >   Adjust posix_memalign() prototype to match what we define in stdlib.h for
> >   C++ compilation.
> >   
> >   PR:	standards/147210
> > 
> > Modified:
> >   head/contrib/gcc/config/i386/pmm_malloc.h
> > 
> > Modified: head/contrib/gcc/config/i386/pmm_malloc.h
> > ==============================================================================
> > --- head/contrib/gcc/config/i386/pmm_malloc.h	Sun Oct 16 10:00:28 2011	(r226429)
> > +++ head/contrib/gcc/config/i386/pmm_malloc.h	Sun Oct 16 10:14:33 2011	(r226430)
> > @@ -34,7 +34,7 @@
> >  #ifndef __cplusplus
> >  extern int posix_memalign (void **, size_t, size_t);
> >  #else
> > -extern "C" int posix_memalign (void **, size_t, size_t) throw ();
> > +extern "C" int posix_memalign (void **, size_t, size_t);
> >  #endif
> >  
> >  static __inline void *
> 


More information about the svn-src-head mailing list