diff options
-rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index f0bc0e3ccb5..ea193eeb259 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -521,8 +521,9 @@ public: /// getOperationName - Return the opcode of this operation for printing. /// - const char* getOperationName() const; + const char* getOperationName(const SelectionDAG *G = 0) const; void dump() const; + void dump(const SelectionDAG *G) const; static bool classof(const SDNode *) { return true; } |