Re: "error: static assertion failed: [...]" (was: [GCC Wiki] Update of "DiagnosticsGuidelines" by MartinSebor)

2016-07-13 Thread Manuel López-Ibáñez
On 13/07/16 14:26, Thomas Schwinge wrote: Hi! I had recently noticed that given: #ifndef __cplusplus /* C */ _Static_assert(0, "foo"); #else /* C++ */ static_assert(0, "foo"); #endif ..., for C we diagnose: [...]:2:1: error: static assertion failed: "foo" _

Re: "error: static assertion failed: [...]"

2016-07-13 Thread Martin Sebor
On 07/13/2016 07:26 AM, Thomas Schwinge wrote: Hi! I had recently noticed that given: #ifndef __cplusplus /* C */ _Static_assert(0, "foo"); #else /* C++ */ static_assert(0, "foo"); #endif ..., for C we diagnose: [...]:2:1: error: static assertion failed: "foo"

RE: [RFC v2] MIPS ABI Extension for IEEE Std 754 Non-Compliant Interlinking

2016-07-13 Thread Maciej W. Rozycki
Hi Matthew, I'm back to this effort now, thanks for patience. > Thanks for the update. I've read through the whole proposal again and > it looks good. I'd like to discuss legacy objects a bit more though... Thanks for your review. > > 3.4 Relocatable Object Generation > > > > Tools that p

gcc-4.9-20160713 is now available

2016-07-13 Thread gccadmin
Snapshot gcc-4.9-20160713 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.9-20160713/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.9 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

Re: SPR access

2016-07-13 Thread tutruong0412
Hi, Thank you for your answer. It is very useful for me. Best regards; Truong TT > On Jul 8, 2016, at 11:07 PM, David Brown wrote: > > Hi, > > (You have something wrong with your emails - the subject for your post > had a copy of most of the body of the email. I have changed it to > somethi

Re: SPR access

2016-07-13 Thread David Brown
Hi, No problem - helping out is one way users can contribute to the gcc community, to save the gcc developers a little effort. Next time, however, keep questions like this on the gcc-help mailing list - it is for asking for help with using gcc. The gcc@gcc.gnu.org mailing list is for development

"error: static assertion failed: [...]" (was: [GCC Wiki] Update of "DiagnosticsGuidelines" by MartinSebor)

2016-07-13 Thread Thomas Schwinge
Hi! I had recently noticed that given: #ifndef __cplusplus /* C */ _Static_assert(0, "foo"); #else /* C++ */ static_assert(0, "foo"); #endif ..., for C we diagnose: [...]:2:1: error: static assertion failed: "foo" _Static_assert(0, "foo"); ^~ ...,