From: Brian Gaeke Date: Wed, 11 Feb 2004 18:52:05 +0000 (+0000) Subject: Fix bug in initial check - when recompiling everything with llvm-native-gcc, X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0afbc2f511e900e8a3ddfbc8431264a6bf788548;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11328 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/check-each-file b/utils/check-each-file index 7d73f30cc12..1f6a8aa065a 100755 --- a/utils/check-each-file +++ b/utils/check-each-file @@ -115,6 +115,8 @@ for f in $files 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"