Lines Matching defs:version
9 Free Software Foundation; version 2 of the License.
62 static struct version *new_version (struct id_list *local,
64 static struct version *merge_versions (struct version *one,
65 struct version *two);
66 static void add_versions (struct version *versions);
82 struct version *version;
132 %type <version> versionlist
133 %type <version> version
134 %type <version> version_stmt_list
135 %type <version> version_stmt
394 versionlist: versionlist version
399 | version
403 version: '{' version_stmt_list '}' ';'
465 ? gettext ("while reading version script '%s': %s at line %d")
653 static struct version *
656 struct version *newp;
658 newp = (struct version *) obstack_alloc (&ld_state.smem, sizeof (*newp));
669 static struct version *
670 merge_versions (struct version *one, struct version *two)
726 /* There is already a version definition for this symbol. */
731 /* No version like this so far. */
746 symbol '%s' in declared both local and global for unnamed version")
748 symbol '%s' in declared both local and global for version '%s'"),
753 /* This is the first version definition for this symbol. */
791 add_versions (struct version *versions)
793 struct version *lastp = versions;
805 struct version *oldp;