diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-10-13 20:43:47 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-10-13 20:43:47 +0000 |
commit | 13c58820f8df2eb8b81ebce60f1ca5b2865c5943 (patch) | |
tree | b5258129caf78cc0d238b814d7226f46317e9502 /llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h | |
parent | df82a33d42177262ea308d00dccd8025f40ae2bd (diff) | |
download | bcm5719-llvm-13c58820f8df2eb8b81ebce60f1ca5b2865c5943.tar.gz bcm5719-llvm-13c58820f8df2eb8b81ebce60f1ca5b2865c5943.zip |
constify the getters in SDNodeDbgValue.
llvm-svn: 219627
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h b/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h index c8bb3d8831c..bce69d79ab1 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h +++ b/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h @@ -81,44 +81,44 @@ public: } // Returns the kind. - DbgValueKind getKind() { return kind; } + DbgValueKind getKind() const { return kind; } // Returns the MDNode pointer for the variable. - MDNode *getVariable() { return Var; } + MDNode *getVariable() const { return Var; } // Returns the MDNode pointer for the expression. - MDNode *getExpression() { return Expr; } + MDNode *getExpression() const { return Expr; } // Returns the SDNode* for a register ref - SDNode *getSDNode() { assert (kind==SDNODE); return u.s.Node; } + SDNode *getSDNode() const { assert (kind==SDNODE); return u.s.Node; } // Returns the ResNo for a register ref - unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; } + unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; } // Returns the Value* for a constant - const Value *getConst() { assert (kind==CONST); return u.Const; } + const Value *getConst() const { assert (kind==CONST); return u.Const; } // Returns the FrameIx for a stack object - unsigned getFrameIx() { assert (kind==FRAMEIX); return u.FrameIx; } + unsigned getFrameIx() const { assert (kind==FRAMEIX); return u.FrameIx; } // Returns whether this is an indirect value. - bool isIndirect() { return IsIndirect; } + bool isIndirect() const { return IsIndirect; } // Returns the offset. - uint64_t getOffset() { return Offset; } + uint64_t getOffset() const { return Offset; } // Returns the DebugLoc. - DebugLoc getDebugLoc() { return DL; } + DebugLoc getDebugLoc() const { return DL; } // Returns the SDNodeOrder. This is the order of the preceding node in the // input. - unsigned getOrder() { return Order; } + unsigned getOrder() const { return Order; } // setIsInvalidated / isInvalidated - Setter / getter of the "Invalidated" // property. A SDDbgValue is invalid if the SDNode that produces the value is // deleted. void setIsInvalidated() { Invalid = true; } - bool isInvalidated() { return Invalid; } + bool isInvalidated() const { return Invalid; } }; } // end llvm namespace |