Get rid of compilation warning during release builds

llvm-svn: 43608
This commit is contained in:
Bill Wendling 2007-11-01 08:24:40 +00:00
parent a5a3acd512
commit 51375114ca

View File

@ -247,8 +247,8 @@ public:
return isExactlyValue(APFloat(V));
else if (&Val.getSemantics() == &APFloat::IEEEsingle)
return isExactlyValue(APFloat((float)V));
else
assert(0);
assert(0);
return false;
}
/// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const ConstantFP *) { return true; }