1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Also compare the built dragonegg objects between phases 2 and 3.

llvm-svn: 142608
This commit is contained in:
Duncan Sands 2011-10-20 20:14:18 +00:00
parent c52861c44e
commit b3278272ae

View File

@ -478,7 +478,8 @@ for Flavor in $Flavors ; do
# Compare .o files between Phase2 and Phase3 and report which ones differ.
echo
echo "# Comparing Phase 2 and Phase 3 files"
for o in `find $llvmCore_de_phase2_objdir -name '*.o'` ; do
for o in `find $llvmCore_de_phase2_objdir -name '*.o'` \
`find $dragonegg_phase2_objdir -name '*.o'` ; do
p3=`echo $o | sed -e 's,Phase2,Phase3,'`
if ! cmp --ignore-initial=16 $o $p3 > /dev/null 2>&1 ; then
echo "file `basename $o` differs between dragonegg phase 2 and phase 3"