Fix a typo (the the => the)
[oota-llvm.git] / utils / release / test-release.sh
index 7aafc6d680fd243ed31eb3e3523f10da5dad5e37..a62e82974aca0b14bc83e0da2770ebe194ef700b 100755 (executable)
@@ -18,7 +18,7 @@ else
     MAKE=make
 fi
 
-projects="llvm cfe dragonegg test-suite"
+projects="llvm cfe dragonegg compiler-rt test-suite"
 
 # Base SVN URL for the sources.
 Base_url="http://llvm.org/svn/llvm-project"
@@ -193,7 +193,7 @@ function check_valid_urls() {
     done
 }
 
-# Export sources to the the build directory.
+# Export sources to the build directory.
 function export_sources() {
     check_valid_urls
 
@@ -214,6 +214,9 @@ function export_sources() {
     if [ ! -h llvm-test ]; then
         ln -s ../../test-suite.src llvm-test
     fi
+    if [ ! -h compiler-rt ]; then
+        ln -s ../../compiler-rt.src compiler-rt
+    fi
     cd $BuildDir
 }
 
@@ -437,16 +440,14 @@ for Flavor in $Flavors ; do
         # Compare .o files between Phase2 and Phase3 and report which ones
         # differ.
         if [ "$do_compare" = "yes" ]; then
-            if [ "$Flavor" = "Release" -o "$Flavor" = "Release-64" ]; then
-                echo
-                echo "# Comparing Phase 2 and Phase 3 files"
-                for o in `find $llvmCore_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 phase 2 and phase 3"
-                    fi
-                done
-            fi
+            echo
+            echo "# Comparing Phase 2 and Phase 3 files"
+            for o in `find $llvmCore_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 phase 2 and phase 3"
+                fi
+            done
         fi
     fi