[cfe-commits] r93707 - /cfe/trunk/test/CodeGenCXX/virt.cpp
Anders Carlsson
andersca at mac.com
Sun Jan 17 19:58:13 PST 2010
Author: andersca
Date: Sun Jan 17 21:58:13 2010
New Revision: 93707
URL: http://llvm.org/viewvc/llvm-project?rev=93707&view=rev
Log:
Update virt.cpp for changes to the LLVM asm printer (?) This test should really be all LLVM IR...
Modified:
cfe/trunk/test/CodeGenCXX/virt.cpp
Modified: cfe/trunk/test/CodeGenCXX/virt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/virt.cpp?rev=93707&r1=93706&r2=93707&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/virt.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/virt.cpp Sun Jan 17 21:58:13 2010
@@ -162,7 +162,7 @@
struct test6_D : test6_B2, virtual test6_B1 {
};
-// CHECK-LP64: .zerofill __DATA, __common, _d6, 2024, 4
+// CHECK-LP64: .zerofill __DATA,__common,_d6,2024,4
struct test7_B2 { virtual void funcB2(); };
struct test7_B1 : virtual test7_B2 { virtual void funcB1(); };
@@ -170,7 +170,7 @@
struct test7_D : test7_B2, virtual test7_B1 {
};
-// CHECK-LP64: .zerofill __DATA, __common, _d7, 16, 3
+// CHECK-LP64: .zerofill __DATA,__common,_d7,16,3
struct test3_B3 { virtual void funcB3(); };
More information about the cfe-commits
mailing list