From: Anders Carlsson Date: Mon, 18 Jan 2010 03:58:13 +0000 (+0000) Subject: Update virt.cpp for changes to the LLVM asm printer (?) This test should really be... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d8bb8ee72bd74382274a4cff50466d8af5d0a0c;p=clang Update virt.cpp for changes to the LLVM asm printer (?) This test should really be all LLVM IR... git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93707 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/virt.cpp b/test/CodeGenCXX/virt.cpp index f7f4c9f15c..4578039442 100644 --- a/test/CodeGenCXX/virt.cpp +++ b/test/CodeGenCXX/virt.cpp @@ -162,7 +162,7 @@ struct test6_B1 : virtual test6_B2 { virtual void funcB1(); }; 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_B1 : virtual test7_B2 { virtual void funcB1(); }; 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(); };