diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-15 21:52:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-15 21:52:58 +0000 |
commit | 4ee623de0b0fdaa2d5caa75bd65bc300cb889962 (patch) | |
tree | e37765b93ffed37c541dc860070b3f6a8fff1f7c /lib/VMCore/Verifier.cpp | |
parent | ee98bf5477ef5582c1a64eaf06cd0753e0bcd4e7 (diff) |
isnan is dead
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Verifier.cpp')
-rw-r--r-- | lib/VMCore/Verifier.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index b832bd1174..40387d3015 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -688,16 +688,6 @@ void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) { break; } - case Intrinsic::isnan: - Assert1(FT->getNumParams() == 1, - "Illegal # arguments for intrinsic function!", IF); - Assert1(FT->getReturnType() == Type::BoolTy, - "Return type is not bool!", IF); - Assert1(FT->getParamType(0)->isFloatingPoint(), - "Argument is not a floating point type!", IF); - NumArgs = 1; - break; - case Intrinsic::isunordered: Assert1(FT->getNumParams() == 2, "Illegal # arguments for intrinsic function!", IF); |