brintos

brintos / llvm-project-archived public Read only

0
0
Text · 280 B · bc19edd Raw
14 lines · plain
1; RUN: llc < %s -mtriple=i686-- -mattr=+sse2; PR25983 4define <2 x float> @a(<2 x i32> %i) nounwind {5  %r = sitofp <2 x i32> %i to <2 x float> 6  ret <2 x float> %r7}8 9define <2 x i32> @b(<2 x float> %i) nounwind {10  %r = fptosi <2 x float> %i to <2 x i32> 11  ret <2 x i32> %r12}13 14