From 30ade26ef7d019014f4da7d95609abca8a601d57 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 7 Jan 2007 08:53:26 +0000 Subject: [PATCH] llvm.isunordered is no longer alive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32995 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 36 ------------------------------------ 1 file changed, 36 deletions(-) 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