Fix bug in initial check - when recompiling everything with llvm-native-gcc,
you have to erase the program and re-run the linker, too, before running the
checker.

llvm-svn: 11328
diff --git a/llvm/utils/check-each-file b/llvm/utils/check-each-file
index 7d73f30..1f6a8aa 100755
--- a/llvm/utils/check-each-file
+++ b/llvm/utils/check-each-file
@@ -115,6 +115,8 @@
 do
 	rm -f $f && gmake $f CC=llvm-native-gcc
 done
+rm -f $program
+$linker
 if $checker
 then
 	echo "Sorry, I can't help you, $program is OK when compiled with llvm-native-gcc"