mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Eliminate unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53772 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6c4d8e3ee4
commit
f8ac645c59
@ -160,7 +160,7 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
|
|||||||
Op += '<';
|
Op += '<';
|
||||||
if (!V) {
|
if (!V) {
|
||||||
Op += "(unknown)";
|
Op += "(unknown)";
|
||||||
} else if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
|
} else if (isa<PseudoSourceValue>(V)) {
|
||||||
// PseudoSourceValues don't have names, so use their print method.
|
// PseudoSourceValues don't have names, so use their print method.
|
||||||
std::ostringstream SS;
|
std::ostringstream SS;
|
||||||
M->MO.getValue()->print(SS);
|
M->MO.getValue()->print(SS);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user