mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
ff21828dce
llvm-svn: 105949
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;
|
|
}
|