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 | /* GCC was not emitting string constants of the correct length when | ||||
4 | * embedded into a structure field like this. It thought the strlength | ||||
5 | * was -1. | ||||
6 | */ | ||||
7 | |||||
8 | typedef struct Connection_Type { | ||||
9 | long to; | ||||
10 | char type[10]; | ||||
11 | long length; | ||||
12 | } Connection; | ||||
13 | |||||
14 | Connection link[3] | ||||
15 | = { {1, "link1", 10}, | ||||
16 | {2, "link2", 20}, | ||||
17 | {3, "link3", 30} }; | ||||
18 |