blob: 72fcb496cb004135fb344f38893c68175229b6b8 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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