[PATCH] D24337: Fix the Thumb test for vfloat intrinsics

James Molloy via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 8 05:46:52 PDT 2016


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

That'll be because it's clearing the MSB of the floating point value in the integer domain:

  fabs(float f) = ((int)x & ~(1U<<31))

LGTM.


https://reviews.llvm.org/D24337





More information about the llvm-commits mailing list