[analyzer] Fix a crash until we can handle temporary struct objects properly.
[clang.git] / utils / VtableTest / check-zvt
blobd8b93bd01fa187dda6f72563d1fa4dbc8a499018
1 #!/bin/sh
3 N_STRUCTS=300
5 # Utility routine to "hand" check vtables.
7 let i=1;
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
12 if [ $? != 0 ]; then
13 echo "FAIL: s$i vtable"
14 else
15 echo "PASS: s$i vtable"
17 let i=i+1
18 done