summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2011-10-11-srl.ll
blob: 434f88c14b6ab447127deb477a7317e82bd63131 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -mattr=-sse4.1

target triple = "x86_64-unknown-linux-gnu"

define void @m387(<2 x i8>* %p, <2 x i16>* %q) {
  %t = load <2 x i8>* %p
  %r = sext <2 x i8> %t to <2 x i16>
  store <2 x i16> %r, <2 x i16>* %q
  ret void
}