Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2002-03-12-StructInitialize.c
blob5174ad4906d2490d62f88be207e2a4791d69522d
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
4 typedef struct Connection_Type {
5 long to;
6 char type[10];
7 long length;
8 } Connection;
10 Connection link[3]
11 = { {1, "link1", 10},
12 {2, "link2", 20},
13 {3, "link3", 30} };