Re: [PATCH 5/7][MSP430][TESTSUITE] Prune messages about ISO C not supporting __int20 from output of tests

2018-11-28 Thread Jozef Lawrynowicz
On Tue, 27 Nov 2018 10:49:56 -0800 Mike Stump wrote: > On Nov 26, 2018, at 3:07 PM, Jozef Lawrynowicz > wrote: > > > > It appears you can actually add __extension__ everywhere (that I tried), > > except > > for the argument types in the declaration of a function i.e. > > foo (__extension_

Re: [PATCH 5/7][MSP430][TESTSUITE] Prune messages about ISO C not supporting __int20 from output of tests

2018-11-27 Thread Mike Stump
On Nov 26, 2018, at 3:07 PM, Jozef Lawrynowicz wrote: > > On Mon, 26 Nov 2018 12:51:26 -0800 > Mike Stump wrote: > >> On Nov 14, 2018, at 7:56 AM, Jozef Lawrynowicz >> wrote: >>> >>> Patch 5 deals with ISO C errors emitted by tests when the large memory >>> model is >>> used. size_t and ptr

Re: [PATCH 5/7][MSP430][TESTSUITE] Prune messages about ISO C not supporting __int20 from output of tests

2018-11-26 Thread Jozef Lawrynowicz
On Mon, 26 Nov 2018 12:51:26 -0800 Mike Stump wrote: > On Nov 14, 2018, at 7:56 AM, Jozef Lawrynowicz > wrote: > > > > Patch 5 deals with ISO C errors emitted by tests when the large memory > > model is > > used. size_t and ptrdiff_t are __int20 with -mlarge, and if the test is > > compiled w

Re: [PATCH 5/7][MSP430][TESTSUITE] Prune messages about ISO C not supporting __int20 from output of tests

2018-11-26 Thread Mike Stump
On Nov 14, 2018, at 7:56 AM, Jozef Lawrynowicz wrote: > > Patch 5 deals with ISO C errors emitted by tests when the large memory model > is > used. size_t and ptrdiff_t are __int20 with -mlarge, and if the test is > compiled with -pedantic-errors and -std=* or -ansi, then use of these types > ca

[PATCH 5/7][MSP430][TESTSUITE] Prune messages about ISO C not supporting __int20 from output of tests

2018-11-14 Thread Jozef Lawrynowicz
Patch 5 deals with ISO C errors emitted by tests when the large memory model is used. size_t and ptrdiff_t are __int20 with -mlarge, and if the test is compiled with -pedantic-errors and -std=* or -ansi, then use of these types causes an error of the form: ISO C does not support __int20 types I