mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
12b8bc1b01
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105949 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|