diff options
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index cb8e9a4560..c045ffe716 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1266,7 +1266,7 @@ public: /// Profile - Gather unique data for the node. /// - void Profile(FoldingSetNodeID &ID); + void Profile(FoldingSetNodeID &ID) const; protected: friend class SelectionDAG; @@ -1499,6 +1499,10 @@ public: return getOperand(getOpcode() == ISD::STORE ? 2 : 1); } + /// getRawFlags - Represent the flags as a bunch of bits. + /// + unsigned getRawFlags() const { return Flags; } + // Methods to support isa and dyn_cast static bool classof(const MemSDNode *) { return true; } static bool classof(const SDNode *N) { |