diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-15 16:58:17 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-15 16:58:17 +0000 |
commit | 91febd133067b8a592c6910b64587d743faa660a (patch) | |
tree | f94951e51759cf4e4398209e0480534341c662d2 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 6be2939d5dbaac1167b720bab865fed18543d753 (diff) | |
download | bcm5719-llvm-91febd133067b8a592c6910b64587d743faa660a.tar.gz bcm5719-llvm-91febd133067b8a592c6910b64587d743faa660a.zip |
More consts on TargetLowering references.
llvm-svn: 62262
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 34f33b0bccc..b83d537e372 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4982,7 +4982,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { return "<<Unknown Machine Node>>"; } if (G) { - TargetLowering &TLI = G->getTargetLoweringInfo(); + const TargetLowering &TLI = G->getTargetLoweringInfo(); const char *Name = TLI.getTargetNodeName(getOpcode()); if (Name) return Name; return "<<Unknown Target Node>>"; |