Displaying 1 result from an estimated 1 matches for "char_array".
2020 Mar 10
2
DWARF .debug_aranges data objects and address spaces
...chine.
As far as I can tell, the only upstream backend that is of a similar
configuration is AVR. I can reproduce the same `.debug_aranges` table as my
target with the following simple example:
$ clang -target avr -mmcu=attiny104 -S -o - -g -gdwarf-aranges -xc - <<'EOF'
char char_array[16383] = {0};
int main() {
return char_array[0];
}
EOF
# ...
.section .debug_aranges,"", at progbits
.long 20 ; Length of ARange Set
.short 2 ; DWARF Arange version number
.long .Lcu_begin0...