Home | History | Annotate | Download | only in config

Lines Matching defs:linkonce

4143 /* Return TRUE if the section flags are marked linkonce
4144 or the name is .gnu.linkonce.*. */
4146 static int linkonce_len = sizeof (".gnu.linkonce.") - 1;
4158 && strncmp (segment_name (sec), ".gnu.linkonce.", linkonce_len) == 0)
4186 /* Create a local symbol. If it is in a linkonce section, we have to
11648 bool linkonce = false;
11676 linkonce = (current_section->flags & SEC_LINK_ONCE) != 0;
11684 else if (strncmp (text_name, ".gnu.linkonce.", linkonce_len) == 0)
11688 name = concat (".gnu.linkonce", base_name, suffix ? suffix : "",
11690 linkonce = true;
11738 | (linkonce ? (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD) : 0)