'unlink' file directly instead of invoking system shell.

llvm-svn: 78026
This commit is contained in:
Ted Kremenek 2009-08-04 00:55:59 +00:00
parent f45dee3ad2
commit 90fc8a492e
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ sub Analyze {
}
}
`rm -f $ofile`;
unlink($ofile);
}
##----------------------------------------------------------------------------##