Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / Transforms / TailCallElim / inf-recursion.ll
bloba5f246d36ce1fb19711f52ab80dcfa007dd8eeb9
1 ; RUN: opt < %s -tailcallelim -S | grep call
2 ; Don't turn this into an infinite loop, this is probably the implementation
3 ; of fabs and we expect the codegen to lower fabs.
5 define double @fabs(double %f) {
6 entry:
7         %tmp2 = call double @fabs( double %f )          ; <double> [#uses=1]
8         ret double %tmp2