5 # Utility routine to "hand" check vtables.
8 while [ $i != $N_STRUCTS ]; do
9 sed -n "/^__ZTV.*s$i:/,/\.[sg][el]/p" test-clang.s |
grep -v '\.[sg][el]' >test-clang-ztv
10 sed -n "/^__ZTV.*s$i:/,/\.[sg][el]/p" test-gcc.s |
grep -v '\.[sg][el]' >test-gcc-ztv
11 diff -U3 test-gcc-ztv test-clang-ztv
13 echo "FAIL: s$i vtable"
15 echo "PASS: s$i vtable"