diff options
author | Dan Gohman <gohman@apple.com> | 2010-06-18 14:01:07 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-06-18 14:01:07 +0000 |
commit | 7720cb3823d5b5868f9b88b0127277820edcb562 (patch) | |
tree | 55450b92b591297f60e9d20e4a9f8e1c4207913f /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | f627dc37bf5b5bc9c2d96b8186feb3eb0b787618 (diff) | |
download | external_llvm-7720cb3823d5b5868f9b88b0127277820edcb562.tar.gz external_llvm-7720cb3823d5b5868f9b88b0127277820edcb562.tar.bz2 external_llvm-7720cb3823d5b5868f9b88b0127277820edcb562.zip |
isValueValidForType can be a static member function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106278 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, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index fd529b62ce..316ae26ac6 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1130,7 +1130,7 @@ public: } bool isExactlyValue(const APFloat& V) const; - bool isValueValidForType(EVT VT, const APFloat& Val); + static bool isValueValidForType(EVT VT, const APFloat& Val); static bool classof(const ConstantFPSDNode *) { return true; } static bool classof(const SDNode *N) { |