diff --git a/docs/LangRef.html b/docs/LangRef.html index 0c004e48251..8fb39b12c94 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -173,7 +173,6 @@
  • 'llvm.memcpy.*' Intrinsic
  • 'llvm.memmove.*' Intrinsic
  • 'llvm.memset.*' Intrinsic
  • -
  • 'llvm.isunordered.*' Intrinsic
  • 'llvm.sqrt.*' Intrinsic
  • 'llvm.powi.*' Intrinsic
  • @@ -4210,41 +4209,6 @@ this can be specified as the fourth argument, otherwise it should be set to 0 or - -
    - 'llvm.isunordered.*' Intrinsic -
    - -
    - -
    Syntax:
    -
    -  declare bool %llvm.isunordered.f32(float Val1, float  Val2)
    -  declare bool %llvm.isunordered.f64(double Val1, double Val2)
    -
    - -
    Overview:
    - -

    -The 'llvm.isunordered' intrinsics return true if either or both of the -specified floating point values is a NAN. -

    - -
    Arguments:
    - -

    -The arguments are floating point numbers of the same type. -

    - -
    Semantics:
    - -

    -If either or both of the arguments is a SNAN or QNAN, it returns true, otherwise -false. -

    -
    - -
    'llvm.sqrt.*' Intrinsic