llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / PowerPC / fneg.ll
1 ; RUN: llc < %s -march=ppc32 | not grep fneg
2
3 define double @test1(double %a, double %b, double %c, double %d) {
4 entry:
5         %tmp2 = fsub double -0.000000e+00, %c            ; <double> [#uses=1]
6         %tmp4 = fmul double %tmp2, %d            ; <double> [#uses=1]
7         %tmp7 = fmul double %a, %b               ; <double> [#uses=1]
8         %tmp9 = fsub double %tmp7, %tmp4         ; <double> [#uses=1]
9         ret double %tmp9
10 }
11
12