diff options
author | Dale Johannesen <dalej@apple.com> | 2007-08-30 00:23:21 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-08-30 00:23:21 +0000 |
commit | f04afdbb48568ef09f11fd10ac03426101f2dbf8 (patch) | |
tree | df18d3207060fa0327a208f95cf643e386a3de7d /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 055c5449a4046a5e1a5210d2f91aee4e3901cccf (diff) | |
download | external_llvm-f04afdbb48568ef09f11fd10ac03426101f2dbf8.zip external_llvm-f04afdbb48568ef09f11fd10ac03426101f2dbf8.tar.gz external_llvm-f04afdbb48568ef09f11fd10ac03426101f2dbf8.tar.bz2 |
Change LegalFPImmediates to use APFloat.
Add APFloat interfaces to ConstantFP, SelectionDAG.
Fix integer bit in double->APFloat conversion.
Convert LegalizeDAG to use APFloat interface in
ConstantFPSDNode uses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index fed77a5..d2c2fa2 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1182,6 +1182,8 @@ public: } bool isExactlyValue(const APFloat& V) const; + bool isValueValidForType(MVT::ValueType VT, const APFloat& Val); + static bool classof(const ConstantFPSDNode *) { return true; } static bool classof(const SDNode *N) { return N->getOpcode() == ISD::ConstantFP || |