diff options
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-elf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 8687965..7a2ad34 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -844,6 +844,8 @@ obj_elf_section_type (str, len) return SHT_PROGBITS; if (len == 6 && strncmp (str, "nobits", 6) == 0) return SHT_NOBITS; + if (len == 4 && strncmp (str, "note", 4) == 0) + return SHT_NOTE; #ifdef md_elf_section_type { |