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 | 1c3b8d6192c8d27aecfbfed5eb46e2863c595aa4 (patch) | |
| tree | 55450b92b591297f60e9d20e4a9f8e1c4207913f /include/llvm/CodeGen/SelectionDAGNodes.h | |
| parent | ed990f8d4d668e602e35aa0fbd984948447d91d0 (diff) | |
| download | external_llvm-1c3b8d6192c8d27aecfbfed5eb46e2863c595aa4.zip external_llvm-1c3b8d6192c8d27aecfbfed5eb46e2863c595aa4.tar.gz external_llvm-1c3b8d6192c8d27aecfbfed5eb46e2863c595aa4.tar.bz2 | |
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 fd529b6..316ae26 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) { |
