remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / CodeGen / X86 / widen_cast-5.ll
blob92618d6fe157e90f095b9d347931f3c59ea54dbd
1 ; RUN: llc < %s -march=x86 -mattr=+sse42 -disable-mmx -o %t
3 ; bitcast a i64 to v2i32
5 define void @convert(<2 x i32>* %dst.addr, i64 %src) nounwind {
6 entry:
7         %conv = bitcast i64 %src to <2 x i32>
8         %xor = xor <2 x i32> %conv, < i32 255, i32 32767 >
9         store <2 x i32> %xor, <2 x i32>* %dst.addr
10         ret void