mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 23:26:04 +00:00

Conversion was performed using https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 plus manual (but uninteresting) fixups.
19 lines
315 B
C++
19 lines
315 B
C++
// RUN: %clang_cc1 %s -triple=i686-apple-darwin10 -emit-llvm -o - | FileCheck %s
|
|
|
|
struct Base {
|
|
virtual ~Base();
|
|
int x;
|
|
};
|
|
|
|
#pragma pack(1)
|
|
struct Sub : virtual Base {
|
|
char c;
|
|
};
|
|
|
|
// CHECK: %struct.Sub = type <{ ptr, i8, %struct.Base }>
|
|
Sub f(Sub x) {
|
|
return x;
|
|
}
|
|
|
|
static int i[sizeof(Sub) == 13 ? 1 : -1];
|