1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
178 B
C
15 lines
178 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
|
|
typedef union {
|
|
long (*ap)[4];
|
|
} ptrs;
|
|
|
|
void DoAssignIteration() {
|
|
ptrs abase;
|
|
abase.ap+=27;
|
|
Assignment(*abase.ap);
|
|
}
|
|
|
|
|