abi_symbols: annotate the size for 'R'-type symbols

Fixes #2622
This commit is contained in:
Christian Prochaska 2017-12-11 11:59:24 +01:00 committed by Christian Helmuth
parent ed89f2f7f0
commit bd36933636
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ foreach line [split $symbols "\n"] {
# linker copies the data from the shared library's symbol into the
# binary's BSS.
#
if {($type == "D") || ($type == "B")} {
if {($type == "D") || ($type == "B") || ($type == "R")} {
puts "$name $type $size_dec"
} else {
puts "$name $type"