Lines Matching defs:new
86 * symbol to the new copy.
297 struct asm_operand *new = __alloc_asm_operand(0);
298 new->name = old->name;
299 new->constraint = copy_expression(old->constraint);
300 new->expr = copy_expression(old->expr);
301 add_ptr_list(&out, new);
306 static void set_replace(struct symbol *old, struct symbol *new)
308 new->replace = old;
309 old->replace = new;
369 struct statement *new = alloc_statement(stmt->pos, STMT_COMPOUND);
370 copy_statement(stmt, new);
371 stmt = new;