diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2025-06-06 13:36:04 -0700 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2025-06-06 13:44:52 -0700 |
commit | 3ba8e33726e78ea43b3bb2b0f1a26059b45b8e7e (patch) | |
tree | 35b7d0b7a7f493686ad56a4125d2fced27101f1e | |
parent | 2a9d7b4af53d11a5047dcf66032fdb732815f186 (diff) | |
download | binutils-3ba8e33726e78ea43b3bb2b0f1a26059b45b8e7e.zip binutils-3ba8e33726e78ea43b3bb2b0f1a26059b45b8e7e.tar.gz binutils-3ba8e33726e78ea43b3bb2b0f1a26059b45b8e7e.tar.bz2 |
bfd: sframe: fix typo in comments
bfd/
* elflink.c (elf_link_input_bfd): Replace ctf frame with SFrame.
-rw-r--r-- | bfd/elflink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 919f2a7..b1b70ca 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -12232,9 +12232,9 @@ elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd) break; case SEC_INFO_TYPE_SFRAME: { - /* Merge .sframe sections into the ctf frame encoder - context of the output_bfd's section. The final .sframe - output section will be written out later. */ + /* Merge SFrame section into the SFrame encoder context of the + output_bfd's section. The final .sframe output section will + be written out later. */ if (!_bfd_elf_merge_section_sframe (output_bfd, flinfo->info, o, contents)) return false; |