[PATCH] D40069: [SimplifyLibCall] Inline calls to cabs when it's safe to do so.

Hal Finkel via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 14 16:54:03 PST 2017


hfinkel accepted this revision.
hfinkel added a comment.
This revision is now accepted and ready to land.

LGTM.

At least on PowerPC, the signature is simply two arguments:

  declare double @cabs(double, double)
  declare float @cabsf(float, float)
  declare ppc_fp128 @cabsl(ppc_fp128, ppc_fp128)

If you could add support for that signature as well, that would be much appreciated.


https://reviews.llvm.org/D40069





More information about the llvm-commits mailing list