Skip to content

Commit

Permalink
Assert instead of exiting with failure
Browse files Browse the repository at this point in the history
Assert instead of exiting with failure in pluto_detect_tra..

Signed-off-by: Uday Reddy <udayreddy@gmail.com>
  • Loading branch information
bondhugula committed Dec 5, 2011
1 parent c40f49b commit 6966edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pluto.c
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ void pluto_detect_transformation_properties(PlutoProg *prog, int use_isl)
fprintf(stderr, "\tIf not, this usually is a result of a bug in the dependence tester,\n");
fprintf(stderr, "\tor rarely a bug in Pluto's auto transformation.\n");
fprintf(stderr, "\tPlease send this input file to the author if possible.\n");
exit(EXIT_FAILURE);
assert(0);
}

band++;
Expand Down

0 comments on commit 6966edf

Please sign in to comment.