Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/X86/widen_cast-5.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=+sse4.2 | FileCheck %s ; CHECK: movl ; CHECK: movlpd ; bitcast a i64 to v2i32 define void @convert(<2 x i32>* %dst.addr, i64 %src) nounwind { entry: %conv = bitcast i64 %src to <2 x i32> %xor = xor <2 x i32> %conv, < i32 255, i32 32767 > store <2 x i32> %xor, <2 x i32>* %dst.addr ret void }