mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
Change ! ( ...== ...) to !=.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@680 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e949da5bb1
commit
64c2cedd66
@ -303,7 +303,7 @@ InstrForest::buildTreeForInstruction(Instruction *instr)
|
||||
if (operand->isInstruction() && operand->use_size() == 1 &&
|
||||
((Instruction*)operand)->getParent() == instr->getParent() &&
|
||||
! instr->isPHINode() &&
|
||||
! instr->getOpcode() == Instruction::Call)
|
||||
instr->getOpcode() != Instruction::Call)
|
||||
{
|
||||
// Recursively create a treeNode for it.
|
||||
opTreeNode = buildTreeForInstruction((Instruction*)operand);
|
||||
|
@ -303,7 +303,7 @@ InstrForest::buildTreeForInstruction(Instruction *instr)
|
||||
if (operand->isInstruction() && operand->use_size() == 1 &&
|
||||
((Instruction*)operand)->getParent() == instr->getParent() &&
|
||||
! instr->isPHINode() &&
|
||||
! instr->getOpcode() == Instruction::Call)
|
||||
instr->getOpcode() != Instruction::Call)
|
||||
{
|
||||
// Recursively create a treeNode for it.
|
||||
opTreeNode = buildTreeForInstruction((Instruction*)operand);
|
||||
|
Loading…
Reference in New Issue
Block a user