diff options
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 12 | ||||
-rw-r--r-- | libiberty/simple-object.c | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 1c91388..faace62 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,15 @@ +2021-06-28 Indu Bhagat <indu.bhagat@oracle.com> + + * simple-object.c (handle_lto_debug_sections): Copy over .BTF section. + +2021-06-28 Indu Bhagat <indu.bhagat@oracle.com> + David Faust <david.faust@oracle.com> + Jose E. Marchesi <jose.marchesi@oracle.com> + Weimin Pan <weimin.pan@oracle.com> + + * simple-object.c (handle_lto_debug_sections): Copy over .ctf + sections. + 2021-06-05 John David Anglin <danglin@gcc.gnu.org> PR target/100734 diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c index 6d70b95..facbf94f 100644 --- a/libiberty/simple-object.c +++ b/libiberty/simple-object.c @@ -304,6 +304,12 @@ handle_lto_debug_sections (const char *name, int rename) /* Copy over .GCC.command.line section under the same name if present. */ else if (strcmp (name, ".GCC.command.line") == 0) return strcpy (newname, name); + /* Copy over .ctf section under the same name if present. */ + else if (strcmp (name, ".ctf") == 0) + return strcpy (newname, name); + /* Copy over .BTF section under the same name if present. */ + else if (strcmp (name, ".BTF") == 0) + return strcpy (newname, name); free (newname); return NULL; } |