• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: not llvm-as < %s |& grep {invalid cast opcode}
2
3define <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}
7