view test/CodeGen/X86/2008-10-16-VecUnaryOp.ll @ 33:e4204d083e25

LLVM 3.5
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 14:32:10 +0900
parents 95c75e76d11b
children afa8332a0e37
line wrap: on
line source

; RUN: llc < %s -march=x86 -mattr=+sse2
; PR2762
define void @foo(<4 x i32>* %p, <4 x double>* %q) {
  %n = load <4 x i32>* %p
  %z = sitofp <4 x i32> %n to <4 x double>
  store <4 x double> %z, <4 x double>* %q
  ret void
}