It isn't necessary to remove the file as it will be overwritten when re-running
the compiler in failed(). tmp_unlink() is the wrong function to use in any case,
as the file is not temporary and could be on an NFS volume (see the comment for
tmp_unlink()).
stats_update(STATS_STDOUT);
tmp_unlink(tmp_stdout);
tmp_unlink(tmp_stderr);
- if (output_dia) {
- tmp_unlink(output_dia);
- }
failed();
}
tmp_unlink(tmp_stdout);
}
tmp_unlink(tmp_stderr);
- if (output_dia) {
- tmp_unlink(output_dia);
- }
failed();
}