From: Chris Lattner Date: Fri, 11 Jun 2004 02:28:03 +0000 (+0000) Subject: Document the llvm.isnan intrinsic X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=320062845b63b0b07634147c4751be0ee40fffd5;p=oota-llvm.git Document the llvm.isnan intrinsic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14131 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 3421b3d4bd0..14c0eb520ee 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -114,8 +114,8 @@
  • Operating System Intrinsics
      -
    1. 'llvm.readport' Intrinsic
    2. -
    3. 'llvm.writeport' Intrinsic
    4. +
    5. 'llvm.readport' Intrinsic
    6. +
    7. 'llvm.writeport' Intrinsic
    8. 'llvm.readio' Intrinsic
    9. 'llvm.writeio' Intrinsic
    @@ -124,6 +124,7 @@
  • 'llvm.memcpy' Intrinsic
  • 'llvm.memmove' Intrinsic
  • 'llvm.memset' Intrinsic
  • +
  • 'llvm.isnan' Intrinsic
  • Debugger intrinsics
  • @@ -2528,6 +2529,41 @@ 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. +

    +
    + + + +
    Debugger Intrinsics