Lines Matching refs:contract
7 %tmp1 = fmul contract <2 x float> %A, %B;
8 %tmp2 = fadd contract <2 x float> %C, %tmp1;
13 ; the contract on the fadd
18 %tmp2 = fadd contract <2 x float> %C, %tmp1;
26 %tmp1 = fmul contract <2 x float> %A, %B;
34 %tmp1 = fmul contract <2 x float> %A, %B;
35 %tmp2 = fsub contract <2 x float> %C, %tmp1;
40 ; the contract on the fsub
45 %tmp2 = fsub contract <2 x float> %C, %tmp1;
53 %tmp1 = fmul contract <2 x float> %A, %B;
58 ; Regression test: contract FMF allows folding (A * 0 + B) to FMA(A, 0, B), but
67 %tmp1 = fmul contract reassoc float %A, 0.0e+0;
68 %tmp2 = fadd contract reassoc float %B, %tmp1;