xref: /llvm-project/clang/test/CodeGen/2004-08-06-LargeStructTest.c (revision 85e5156598b1bbad0ae41cf4d0d5b845dd655ffd)
1*85e51565SEric Christopher // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2*85e51565SEric Christopher 
3*85e51565SEric Christopher 
4*85e51565SEric Christopher #define A(X) int X;
5*85e51565SEric Christopher #define B(X) A(X##0) A(X##1) A(X##2) A(X##3) A(X##4) A(X##5) A(X##6) A(X##7) \
6*85e51565SEric Christopher              A(X##8) A(X##9) A(X##A) A(X##B) A(X##C) A(X##D) A(X##E) A(X##F)
7*85e51565SEric Christopher #define C(X) B(X##0) B(X##1) B(X##2) B(X##3) B(X##4) B(X##5) B(X##6) B(X##7) \
8*85e51565SEric Christopher              B(X##8) B(X##9) B(X##A) B(X##B) B(X##C) B(X##D) B(X##E) B(X##F)
9*85e51565SEric Christopher 
10*85e51565SEric Christopher struct foo {
11*85e51565SEric Christopher   C(x);   // 256
12*85e51565SEric Christopher   C(y);   // 256
13*85e51565SEric Christopher   C(z);
14*85e51565SEric Christopher };
15*85e51565SEric Christopher 
16*85e51565SEric Christopher 
test(struct foo * F)17*85e51565SEric Christopher int test(struct foo *F) {
18*85e51565SEric Christopher    return F->xA1 + F->yFF + F->zC4;
19*85e51565SEric Christopher }
20