]> granicus.if.org Git - clang/commitdiff
Remove redundant test
authorAdrian Prantl <aprantl@apple.com>
Fri, 5 Jan 2018 01:28:59 +0000 (01:28 +0000)
committerAdrian Prantl <aprantl@apple.com>
Fri, 5 Jan 2018 01:28:59 +0000 (01:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321846 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/debug-info-composite-cc.cpp

index a540c7c805cced09c510af6a3ac6a7cb6808168f..2f0911612196857f7b34c7621ffef924427b8abb 100644 (file)
@@ -15,14 +15,6 @@ struct RefCopy {
   RefCopy(RefCopy &Copy) {}
 } refCopy;
 
-// Not trivially copyable because of the explicit move constructor.
-// CHECK-DAG: !DICompositeType({{.*}}, name: "RefMove",{{.*}}flags: DIFlagTypePassByReference
-struct RefMove {
-  int i;
-  RefMove() = default;
-  RefMove(RefMove &&Move) {}
-} refMove;
-
 // POD-like type even though it defines a destructor.
 // CHECK-DAG: !DICompositeType({{.*}}, name: "Podlike", {{.*}}flags: DIFlagTypePassByValue
 struct Podlike {