manually upgrade a bunch of tests to modern syntax, and remove some that
[oota-llvm.git] / test / Assembler / invalid_cast.ll
1 ; RUN: not llvm-as < %s |& grep {invalid cast opcode}
2
3 define <3 x i8> @foo(<4 x i64> %x) {
4   %y = trunc <4 x i64> %x to <3 x i8>
5   ret <3 x i8> %y
6 }