Chris Lattner | f406d28 | 2002-07-23 18:26:48 +0000 | [diff] [blame] | 1 | ; This fails linking when it is linked with an empty file as the first object file |
2 | |||||
Misha Brukman | b6cb66f | 2003-09-15 20:04:28 +0000 | [diff] [blame^] | 3 | ; RUN: llvm-as > %t1.bc < /dev/null |
4 | ; RUN: llvm-as < %s > %t2.bc | ||||
5 | ; RUN: llvm-link %t[12].bc | ||||
Chris Lattner | f406d28 | 2002-07-23 18:26:48 +0000 | [diff] [blame] | 6 | |
7 | %work = global int (int, int)* %zip | ||||
8 | |||||
9 | declare int %zip(int, int) |