diff options
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcInstrSelection.cpp')
| -rw-r--r-- | llvm/lib/Target/Sparc/SparcInstrSelection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Sparc/SparcInstrSelection.cpp b/llvm/lib/Target/Sparc/SparcInstrSelection.cpp index c73264c2210..fde7282e85a 100644 --- a/llvm/lib/Target/Sparc/SparcInstrSelection.cpp +++ b/llvm/lib/Target/Sparc/SparcInstrSelection.cpp @@ -1688,7 +1688,7 @@ GetInstructionsByRule(InstructionNode* subtreeRoot, // to follow SSA def-use edges here, not BURG tree edges. // Instruction* result = subtreeRoot->getInstruction(); - Value* firstUse = (Value*) * result->use_begin(); + Value* firstUse = result->use_empty() ? 0 : *result->use_begin(); bool discardResult = (result->use_size() == 1 && firstUse->isInstruction() |

