Dan Gohman | 2d65d35 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 2 | |
3 | |||||
4 | typedef struct Connection_Type { | ||||
5 | long to; | ||||
6 | char type[10]; | ||||
7 | long length; | ||||
8 | } Connection; | ||||
9 | |||||
10 | Connection link[3] | ||||
11 | = { {1, "link1", 10}, | ||||
12 | {2, "link2", 20}, | ||||
13 | {3, "link3", 30} }; | ||||
14 |