Home
last modified time | relevance | path

Searched refs:new_cdata (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dgenoutput.c1089 struct constraint_data **iter, **slot, *new_cdata; in note_constraint() local
1139 new_cdata = XNEWVAR (struct constraint_data, in note_constraint()
1141 new (new_cdata) constraint_data (); in note_constraint()
1142 strcpy (CONST_CAST (char *, new_cdata->name), name); in note_constraint()
1143 new_cdata->namelen = namelen; in note_constraint()
1144 new_cdata->loc = info->loc; in note_constraint()
1145 new_cdata->next_this_letter = *slot; in note_constraint()
1146 *slot = new_cdata; in note_constraint()
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dgenoutput.c1115 struct constraint_data **iter, **slot, *new_cdata; in note_constraint() local
1164 new_cdata = XNEWVAR (struct constraint_data, sizeof (struct constraint_data) + namelen); in note_constraint()
1165 strcpy ((char *)new_cdata + offsetof(struct constraint_data, name), name); in note_constraint()
1166 new_cdata->namelen = namelen; in note_constraint()
1167 new_cdata->lineno = lineno; in note_constraint()
1168 new_cdata->next_this_letter = *slot; in note_constraint()
1169 *slot = new_cdata; in note_constraint()