]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gas/config/tc-arm.c
Add support for an ARM specific 'y' section attribute flag to mark the section as...
[thirdparty/binutils-gdb.git] / gas / config / tc-arm.c
index 046abe5b9e66233de7ff84fe64ae39b55d40dcda..4a16267f5396b4f46eb19fb655bbe7614cd52cdd 100644 (file)
@@ -24091,6 +24091,15 @@ arm_fix_adjustable (fixS * fixP)
 #endif /* defined (OBJ_ELF) || defined (OBJ_COFF) */
 
 #ifdef OBJ_ELF
+bfd_vma
+arm_elf_section_letter (int letter, char **ptrmsg)
+{
+  if (letter == 'y')
+    return SHF_ARM_NOREAD;
+
+  *ptrmsg = _("unrecognized .section attribute: want a,e,w,x,y,M,S,G,T");
+  return -1;
+}
 
 const char *
 elf32_arm_target_format (void)