diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-09-30 23:45:08 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-09-30 23:45:08 +0000 |
commit | 64c2cedd6623770b3914942c7f3024598061dc40 (patch) | |
tree | c9c577e9bbc3d4dd83cd8555c123bfbedbae84ab /lib/CodeGen/InstrSelection/InstrForest.cpp | |
parent | e949da5bb18f89de40b6781237dfe616cba7bfc9 (diff) |
Change ! ( ...== ...) to !=.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSelection/InstrForest.cpp')
-rw-r--r-- | lib/CodeGen/InstrSelection/InstrForest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSelection/InstrForest.cpp b/lib/CodeGen/InstrSelection/InstrForest.cpp index f7091a29c6..9f4df08d38 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); |