[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / pragma-pack-3.cpp
bloba11d20764b1faac775821e7b913fd1ef27e81539
1 // RUN: %clang_cc1 %s -triple=i686-apple-darwin10 -emit-llvm -o - | FileCheck %s
3 struct Base {
4 char a;
5 };
7 struct Derived_1 : virtual Base
9 char b;
12 #pragma pack(1)
13 struct Derived_2 : Derived_1 {
14 // CHECK: %struct.Derived_2 = type { %struct.Derived_1.base, %struct.Base }
15 // CHECK: %struct.Derived_1.base = type <{ ptr, i8 }>
18 Derived_2 x;