1Test that both llvm-dis (uses a data streamer) and opt (no data streamer) 2handle a .bc file padded with '\n' at the end. 3 4This files can be produced under a peculiar situation: 5 6* A .bc is produced os OS X, but without a darwin triple, so it has no 7 wrapper. 8* It is included in a .a archive 9* ranlib is ran on that archive. It will pad the members to make them multiple 10 of 8 bytes. 11 12RUN: llvm-dis -disable-output %p/Inputs/padding.bc 13RUN: opt -disable-output %p/Inputs/padding.bc 14