5 # Utility routine to "hand" check VTTs.
8 while [ $i != $N_STRUCTS ]; do
9 sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-clang.s |
10 grep -v '\.[sgm][elo]' |
sed -e 's/[()]//g' -e '/^$/d' >test-clang-ztt
11 sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-gcc.s |
12 grep -v '\.[sgm][elo]' |
sed -e 's/[()]//g' -e 's/ + /+/' >test-gcc-ztt
13 diff -U3 test-gcc-ztt test-clang-ztt