Remove redundant test

llvm-svn: 321846
This commit is contained in:
Adrian Prantl 2018-01-05 01:28:59 +00:00
parent 6c5f03a1b2
commit 6c63a6c9a1
1 changed files with 0 additions and 8 deletions

View 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 {