Module Name:    src
Committed By:   msaitoh
Date:           Mon Nov  3 20:49:32 UTC 2014

Modified Files:
        src/external/gpl3/gcc/dist/gcc/config/i386 [netbsd-6]: pmm_malloc.h

Log Message:
Pull up following revision(s) (requested by joerg in ticket #1157):
        external/gpl3/gcc.old/dist/gcc/config/i386/pmm_malloc.h: revision 1.2
Apply r1.2 from our GCC 4.8 version of the same file:
Kill the "throw()" on a forward declaration for posix_memalign (it does
not match our base declaration and may cause warnings).


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.4.1 \
    src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h
diff -u src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.1.1.1 src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.1.1.1.4.1
--- src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.1.1.1	Tue Jun 21 01:22:05 2011
+++ src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h	Mon Nov  3 20:49:32 2014
@@ -31,7 +31,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 *

Reply via email to