bool *out_progress = (bool *)data;
bool progress = false;
- void *ctx = talloc(NULL, void*);
+ void *ctx = talloc_new(NULL);
for (ir = first;; ir = (ir_instruction *)ir->next) {
ir_assignment *ir_assign = ir->as_assignment();
bool *out_progress = (bool *)data;
bool progress = false;
- void *ctx = talloc(NULL, void*);
+ void *ctx = talloc_new(NULL);
/* Safe looping, since process_assignment */
for (ir = first, ir_next = (ir_instruction *)first->next;;
ir = ir_next, ir_next = (ir_instruction *)ir->next) {