On Jan 17, 2010, at 7:58 PM, Anders Carlsson wrote: > 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...
Thanks Anders, Who wrote this testcase? Can you convert it to LLVM IR? There are a bunch more syntactic .s printer changes coming. -Chris > > 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(); }; > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
