reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_schedule_constraints.c
   56 	sc_copy = isl_calloc_type(ctx, struct isl_schedule_constraints);
   57 	if (!sc_copy)
   60 	sc_copy->domain = isl_union_set_copy(sc->domain);
   61 	sc_copy->context = isl_set_copy(sc->context);
   62 	if (!sc_copy->domain || !sc_copy->context)
   62 	if (!sc_copy->domain || !sc_copy->context)
   63 		return isl_schedule_constraints_free(sc_copy);
   66 		sc_copy->constraint[i] = isl_union_map_copy(sc->constraint[i]);
   67 		if (!sc_copy->constraint[i])
   68 			return isl_schedule_constraints_free(sc_copy);
   71 	return sc_copy;