mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-29 14:40:39 +00:00
Use unified diffs with gnu diff instead of old diffs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2449 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
904ec289c2
commit
978d57f6a7
@ -16,7 +16,7 @@ echo "======== Running optimizier test on $1"
|
||||
|
||||
$DIS < $1.bc.1 > $1.ll.1 || exit 3
|
||||
$DIS < $1.bc.2 > $1.ll.2 || exit 3
|
||||
diff $1.ll.[12] || exit 3
|
||||
gdiff -u $1.ll.[12] || exit 3
|
||||
|
||||
# Try out SCCP & CleanGCC
|
||||
$AS < $1 | $OPT -q -inline -dce -cleangcc -sccp -dce \
|
||||
@ -26,7 +26,7 @@ echo "======== Running optimizier test on $1"
|
||||
$OPT -q -sccp -dce < $1.bc.3 > $1.bc.4 || exit 2
|
||||
$DIS < $1.bc.3 > $1.ll.3 || exit 3
|
||||
$DIS < $1.bc.4 > $1.ll.4 || exit 3
|
||||
diff $1.ll.[34] || exit 3
|
||||
gdiff -u $1.ll.[34] || exit 3
|
||||
rm $1.bc.[1234] $1.ll.[1234]
|
||||
|
||||
touch Output/$1.opt # Success!
|
||||
|
Loading…
Reference in New Issue
Block a user