brintos

brintos / llvm-project-archived public Read only

0
0
Text · 229 B · 0ce856f Raw
12 lines · cpp
1// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s2// PR56953 4struct A { A(const A&); ~A(); };5A& a();6void b() {7  A x = a();8}9 10// CHECK: call {{.*}} @_ZN1AC1ERKS_11// CHECK: call {{.*}} @_ZN1AD1Ev12