llvm-project/clang/test/CodeGen/ms_struct-bitfield-init.c
Mehdi Amini e0ac46e69d Revert "Remove rdar links; NFC"
This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d.
This commit wasn't reviewed ahead of time and significant concerns were
raised immediately after it landed. According to our developer policy
this warrants immediate revert of the commit.

https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy

Differential Revision: https://reviews.llvm.org/D155509
2023-07-17 18:08:04 -07:00

69 lines
1.0 KiB
C

// RUN: %clang_cc1 -emit-llvm-only -triple x86_64-apple-darwin9 %s
// rdar://8823265
extern void abort(void);
#define ATTR __attribute__((__ms_struct__))
struct
{
char foo;
long : 0;
char : 0;
int : 0;
char bar;
} ATTR t1 = {'a', 'b'};
struct
{
char bar0;
long : 0;
int : 0;
char bar1;
char bar2;
long : 0;
char bar3;
char bar4;
char : 0;
char bar5;
char bar6;
char : 0;
char bar7;
char bar8;
} ATTR t2 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'};
struct {
int : 0;
int i1;
int : 0;
int i2;
int : 0;
int i3;
int : 0;
int i4;
} t3 = {1,2,3,4};
int main(void) {
if (sizeof(t1) != 2)
abort();
if (t1.foo != 'a')
abort();
if (t1.bar != 'b')
abort();
t1.foo = 'c';
t1.bar = 'd';
if (t1.foo != 'c')
abort();
if (t1.bar != 'd')
abort();
if (sizeof(t2) != 9)
abort();
if (t2.bar0 != 'a' || t2.bar8 != 'i')
abort();
if (sizeof(t3) != 16)
abort();
if (t3.i1 != 1 || t3.i4 != 4)
abort();
return 0;
}