sprintersb

Results 60 comments of sprintersb

That file was added in cdde8f3c2ed77ac85111bcf30c40e78 Though I am not at all familiar with all this, maybe Jörg has a clue...

Currently there are no plans for a new release. Though it would make sense to roll a new release around the time when GCC v15 is released (spring), as there...

`make distckeck` should work again.

That "solution" just nullifies the purpose of the `I` constraint, which is to diagnose early (already in the compiler and not in the assembler) when a const operand doesn't fit.

Dunno. `iom324pb.h` is from Microchip, presumably auto-generated. So you'll have to ask them. `iom324pa.h` is from 2009. Maybe you could use `iom324pa.h` from Microchip, too. But be prepared that there...

One issue is that `BAUD` is used for `setbaud.h` but is a reserved identifier in `avr/io.h` for: * ATxmega8E5, ATxmega16A4, ATxmega16A4U, ATxmega16C4, ATxmega16D4, ATxmega16E5, ATxmega32A4, ATxmega32A4U, ATxmega32C3, ATxmega32C4, ATxmega32D3, ATxmega32D4,...

* First of all, the host is avr: `--host=avr` because AVR-LibC's code is supposed to run on AVR. * No target specification is required. * What happens when you just...

As far as I understand, the purpose of that GCC test case is to make sure that the compiler doesn't call `calloc` when it knows in advance that too much...

Ok, in that case maybe the best is to XFAIL the test case or similar, rather than turning calloc's MULT into a widening one. Also @dl8dtl may have an opinion...