Add a test case for PR697, ensuring the linker works with ConstantPacked.
[oota-llvm.git] / test / Linker / 2006-01-19-ConstantPacked.ll
1 ; RUN: llvm-as %s -f -o %s.bc ; llvm-link -f -o %s.linked %s.bc
2
3 target endian = big
4 target pointersize = 32
5 target triple = "powerpc-apple-darwin7.7.0"
6 deplibs = [ "c", "crtend" ]
7 %source = global <4 x int> < int 0, int 1, int 2, int 3 >
8
9 implementation   ; Functions:
10
11 int %main() {
12 entry:
13         ret int 0
14 }