1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/CodeGen/PowerPC/vec_fneg.ll

9 lines
304 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=ppc32 -mcpu=g5 | grep vsubfp
2007-07-30 09:52:03 +02:00
define void @t(<4 x float>* %A) {
%tmp2 = load <4 x float>, <4 x float>* %A
%tmp3 = fsub <4 x float> < float -0.000000e+00, float -0.000000e+00, float -0.000000e+00, float -0.000000e+00 >, %tmp2
2007-07-30 09:52:03 +02:00
store <4 x float> %tmp3, <4 x float>* %A
ret void
}