зеркало из https://github.com/microsoft/clang-1.git
8 строки
284 B
C++
8 строки
284 B
C++
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct A { virtual void a(); };
|
|
A x(A& y) { return y; }
|
|
|
|
// CHECK: define linkonce_odr {{.*}} @_ZN1AC1ERKS_(%struct.A* %this, %struct.A*) unnamed_addr
|
|
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1A, i64 0, i64 2)
|