From 7c74c0c8020124632f320cddca0da88b6c7685be Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Fri, 5 Jan 2018 01:28:59 +0000 Subject: [PATCH] Remove redundant test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321846 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenCXX/debug-info-composite-cc.cpp | 8 -------- 1 file changed, 8 deletions(-) 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 { -- 2.50.1