From: Adrian Prantl Date: Fri, 5 Jan 2018 01:28:59 +0000 (+0000) Subject: Remove redundant test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c74c0c8020124632f320cddca0da88b6c7685be;p=clang Remove redundant test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321846 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-composite-cc.cpp b/test/CodeGenCXX/debug-info-composite-cc.cpp index a540c7c805..2f09116121 100644 --- a/test/CodeGenCXX/debug-info-composite-cc.cpp +++ b/test/CodeGenCXX/debug-info-composite-cc.cpp @@ -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 {