mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
9 lines
133 B
C
9 lines
133 B
C
|
// RUN: %llvmgcc -S %s
|
||
|
// Test case by Eric Postpischil!
|
||
|
void foo(void)
|
||
|
{
|
||
|
char a[1];
|
||
|
int t = 1;
|
||
|
((char (*)[t]) a)[0][0] = 0;
|
||
|
}
|