Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / copy-assign-synthesis-2.cpp
bloba8f2b1304309c09686382e22489c407d2084a266
1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
2 struct A {};
3 A& (A::*x)(const A&) = &A::operator=;
4 // CHECK-LABEL: define linkonce_odr {{.*}}ptr @_ZN1AaSERKS_