https://sourceware.org/bugzilla/show_bug.cgi?id=34137
--- Comment #1 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Here is a Binutils-only test case:
.text
.global main
.type main, @function
main:
ret
.size main, .-main
.section .eeprom,"aw"
.global ee_data
.type ee_data, @object
.size ee_data, 4
ee_data:
.4byte 0x11223344
> avr-as x.s -o x.o -mmcu=avr4
> avr-ld x.o -o x.elf -mavr4
> avr-size x.elf
text data bss dec hex filename
2 4 0 6 6 x.elf
--
You are receiving this mail because:
You are on the CC list for the bug.