Remove support for the isnan intrinsic
authorChris Lattner <sabre@nondot.org>
Tue, 15 Jun 2004 21:37:54 +0000 (21:37 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 15 Jun 2004 21:37:54 +0000 (21:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14186 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/Local.cpp

index e9ec6db069c14800ce30eb803376f47b576cfd87..694c31e1f96e61643697dcd5bd6145f435ab5483 100644 (file)
@@ -245,7 +245,6 @@ bool llvm::canConstantFoldCallTo(Function *F) {
   const std::string &Name = F->getName();
 
   switch (F->getIntrinsicID()) {
-  case Intrinsic::isnan: return true;
   case Intrinsic::isunordered: return true;
   default: break;
   }
@@ -274,8 +273,6 @@ Constant *llvm::ConstantFoldCall(Function *F,
   if (Operands.size() == 1) {
     if (ConstantFP *Op = dyn_cast<ConstantFP>(Operands[0])) {
       double V = Op->getValue();
-      if (Name == "llvm.isnan")
-        return ConstantBool::get(isnan(V));
       else if (Name == "sin")
         return ConstantFP::get(Ty, sin(V));
       else if (Name == "cos")