llvm-project/clang/test/CodeGenCXX/pragma-pack.cpp
Nikita Popov 3512721d52 [CodeGenCXX] Convert more tests to opaque pointers (NFC)
Conversion was performed using
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34
plus manual (but uninteresting) fixups.
2022-10-07 10:01:17 +02:00

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];