From 64c2cedd6623770b3914942c7f3024598061dc40 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Sun, 30 Sep 2001 23:45:08 +0000 Subject: [PATCH] Change ! ( ...== ...) to !=. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@680 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/InstrSelection/InstrForest.cpp | 2 +- lib/Target/SparcV9/InstrSelection/InstrForest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/InstrSelection/InstrForest.cpp b/lib/CodeGen/InstrSelection/InstrForest.cpp index f7091a29c61..9f4df08d384 100644 --- a/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/lib/CodeGen/InstrSelection/InstrForest.cpp @@ -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); diff --git a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp index f7091a29c61..9f4df08d384 100644 --- a/lib/Target/SparcV9/InstrSelection/InstrForest.cpp +++ b/lib/Target/SparcV9/InstrSelection/InstrForest.cpp @@ -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); -- 2.34.1