diff --git a/docs/LangRef.html b/docs/LangRef.html index 38307cb094e..5dfc9539c91 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -124,7 +124,6 @@
  • 'llvm.memcpy' Intrinsic
  • 'llvm.memmove' Intrinsic
  • 'llvm.memset' Intrinsic
  • -
  • 'llvm.isnan' Intrinsic
  • 'llvm.isunordered' Intrinsic
  • @@ -2530,39 +2529,6 @@ this can be specified as the fourth argument, otherwise it should be set to 0 or - -
    - 'llvm.isnan' Intrinsic -
    - -
    - -
    Syntax:
    -
    -  call bool (<float or double>)* %llvm.isnan(<float or double> Val)
    -
    - -
    Overview:
    - -

    -The 'llvm.isnan' intrinsic returns true if the specific floating point -value is a NAN. -

    - -
    Arguments:
    - -

    -The argument is a floating point number. -

    - -
    Semantics:
    - -

    -If the argument is a SNAN or QNAN, it returns true, otherwise false. -

    -
    - -
    'llvm.isunordered' Intrinsic diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 7cd54c6b612..b40b356129b 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -126,7 +126,7 @@ bytecode format and (b) those who really want to understand or document the details of the bytecode format.
  • The LLVM Bytecode file format is now being documented.
  • -
  • LLVM now provides an llvm.isnan intrinsic +
  • LLVM now provides an llvm.isunordered intrinsic for efficient implementation of unordered floating point comparisons.