mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 22:43:53 +00: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;
|
|
}
|