[cfe-commits] r99803 - /cfe/trunk/utils/VtableTest/check-ztt

Anders Carlsson andersca at mac.com
Sun Mar 28 20:26:49 PDT 2010


Author: andersca
Date: Sun Mar 28 22:26:49 2010
New Revision: 99803

URL: http://llvm.org/viewvc/llvm-project?rev=99803&view=rev
Log:
More magic.

Modified:
    cfe/trunk/utils/VtableTest/check-ztt

Modified: cfe/trunk/utils/VtableTest/check-ztt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/VtableTest/check-ztt?rev=99803&r1=99802&r2=99803&view=diff
==============================================================================
--- cfe/trunk/utils/VtableTest/check-ztt (original)
+++ cfe/trunk/utils/VtableTest/check-ztt Sun Mar 28 22:26:49 2010
@@ -6,10 +6,10 @@
 
 let i=1;
 while [ $i != $N_STRUCTS ]; do
-  sed -n "/^__ZTT.*s$i:/,/\.[sg][el]/p" test-clang.s |
-    grep -v '\.[sg][el]' | sed -e 's/[()]//g' -e '/^$/d'  >test-clang-ztt
-  sed -n "/^__ZTT.*s$i:/,/\.[sg][el]/p" test-gcc.s |
-    grep -v '\.[sg][el]' | sed -e 's/[()]//g' -e 's/ + /+/'  >test-gcc-ztt
+  sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-clang.s |
+    grep -v '\.[sgm][elo]' | sed -e 's/[()]//g' -e '/^$/d'  >test-clang-ztt
+  sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-gcc.s |
+    grep -v '\.[sgm][elo]' | sed -e 's/[()]//g' -e 's/ + /+/'  >test-gcc-ztt
   diff -U3 test-gcc-ztt test-clang-ztt
   if [ $? != 0 ]; then
      echo "FAIL: s$i VTT"





More information about the cfe-commits mailing list