comparison clang/utils/VtableTest/check-zti @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 #!/bin/sh
2
3 N_STRUCTS=300
4
5 # Utility routine to "hand" check type infos.
6
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"
18 fi
19 let i=i+1
20 done