mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
13 lines
130 B
C
13 lines
130 B
C
|
|
||
|
typedef union {
|
||
|
long (*ap)[4];
|
||
|
} ptrs;
|
||
|
|
||
|
void DoAssignIteration() {
|
||
|
ptrs abase;
|
||
|
abase.ap+=27;
|
||
|
Assignment(*abase.ap);
|
||
|
}
|
||
|
|
||
|
|