blob: 5c7f38f0057994d5b9fc36bf7d4664dc93fb85e2 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4typedef union {
5 long (*ap)[4];
6} ptrs;
7
8void DoAssignIteration() {
9 ptrs abase;
10 abase.ap+=27;
11 Assignment(*abase.ap);
12}
13
14