Author: mrs
Date: Thu Jan  7 13:19:39 2010
New Revision: 92928

URL: http://llvm.org/viewvc/llvm-project?rev=92928&view=rev
Log:
Also generate the .s files.

Modified:
    cfe/trunk/utils/VtableTest/Makefile

Modified: cfe/trunk/utils/VtableTest/Makefile
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/VtableTest/Makefile?rev=92928&r1=92927&r2=92928&view=diff

==============================================================================
--- cfe/trunk/utils/VtableTest/Makefile (original)
+++ cfe/trunk/utils/VtableTest/Makefile Thu Jan  7 13:19:39 2010
@@ -8,11 +8,13 @@
        gen >test.cc
 
 test-gcc.sum: test.cc
-       time $(GXX) test.cc -o test-gcc
+       time $(GXX) test.cc -o test-gcc.s -S
+       $(GXX) test-gcc.s -o test-gcc
        test-gcc >test-gcc.sum
 
 test-clang.sum: test.cc
-       time $(CLANGXX) test.cc -o test-clang
+       time $(CLANGXX) test.cc -o test-clang.s -S
+       $(CLANGXX) test-clang.s -o test-clang
        test-clang >test-clang.sum
 
 one: test-gcc.sum test-clang.sum


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to