blob: 9eb11e187a119aa38d0e6fa778750e7b94c90f30 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattnere4bd95e2002-04-08 19:32:51 +00003
4typedef struct Connection_Type {
5 long to;
6 char type[10];
7 long length;
8} Connection;
9
10Connection link[3]
11= { {1, "link1", 10},
12 {2, "link2", 20},
13 {3, "link3", 30} };
14