blob: e661e847d44651adae27bd907257a713e65aa9d3 [file] [log] [blame]
Dan Gohman29c3cef2008-08-14 20:04:46 +00001; RUN: llvm-as < %s | llc
2; PR2671
3
Dan Gohman29c3cef2008-08-14 20:04:46 +00004define void @g(<2 x i16>* %p, <2 x i8>* %q) {
Nate Begeman543d2142009-04-27 18:41:29 +00005 %t = load <2 x i16>* %p
6 %r = trunc <2 x i16> %t to <2 x i8>
7 store <2 x i8> %r, <2 x i8>* %q
8 ret void
Dan Gohman29c3cef2008-08-14 20:04:46 +00009}