Re: [PING] [PATCH] [MSP430] PR79242: Implement Complex Partial Integers

2018-02-14 Thread Jozef Lawrynowicz
On 14/02/18 07:25, Jeff Law wrote: On 02/08/2018 09:54 AM, Jozef Lawrynowicz wrote: ping x1 Complex Partial Integers are unimplemented, resulting in an ICE when attempting to use them. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79242 This results in GCC7/8 for msp430-elf failing to build. ty

Re: [PING] [PATCH] [MSP430] PR79242: Implement Complex Partial Integers

2018-02-13 Thread Jeff Law
On 02/08/2018 09:54 AM, Jozef Lawrynowicz wrote: > ping x1 > > Complex Partial Integers are unimplemented, resulting in an ICE when > attempting to use them. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79242 > This results in GCC7/8 for msp430-elf failing to build. > > typedef _Complex __int20 C

Re: [PING] [PATCH] [MSP430] PR79242: Implement Complex Partial Integers

2018-02-08 Thread DJ Delorie
The msp43-specific parts look OK to me, but obviously they're kinda useless without the core changes :-)

[PING] [PATCH] [MSP430] PR79242: Implement Complex Partial Integers

2018-02-08 Thread Jozef Lawrynowicz
ping x1 Complex Partial Integers are unimplemented, resulting in an ICE when attempting to use them. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79242 This results in GCC7/8 for msp430-elf failing to build. typedef _Complex __int20 C; C foo (C x, C y) { return x + y; } (Thanks Jakub - https: