opnsense-src/test/CodeGenCXX/copy-constructor-synthesis-2.cpp

8 lines
240 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2009-12-15 13:49:47 -05:00
struct A { virtual void a(); };
A x(A& y) { return y; }
// CHECK: define linkonce_odr void @_ZN1AC1ERKS_(
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1A, i64 0, i64 2)