Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / utils / VtableTest / check-zti
blobbf5b045d81d2a9bae9c0557ed4df598d878914c3
1 #!/bin/sh
3 N_STRUCTS=300
5 # Utility routine to "hand" check type infos.
7 let i=1;
8 while [ $i != $N_STRUCTS ]; do
9 sed -n "/^__ZTI.*s$i:/,/\.[sg][el]/p" test-clang.s |
10 grep -v '\.[sg][el]' | sed 's/(\([0-9][0-9]*\))/\1/' >test-clang-zti
11 sed -n "/^__ZTI.*s$i:/,/\.[sg][el]/p" test-gcc.s |
12 grep -v '\.[sg][el]' | sed 's/(\([0-9][0-9]*\))/\1/' >test-gcc-zti
13 diff -U3 test-gcc-zti test-clang-zti
14 if [ $? != 0 ]; then
15 echo "FAIL: s$i type info"
16 else
17 echo "PASS: s$i type info"
19 let i=i+1
20 done