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 | 813ffcc4f68fbf0b70e8ebfedddafb15cbf236e8 (patch) | |
tree | 5381f30f8e42d6bcc60f43776b655dcabcaf3f0b /llvm | |
parent | e44abbb99db99321ba73403e5da5787ba3111a6a (diff) | |
download | bcm5719-llvm-813ffcc4f68fbf0b70e8ebfedddafb15cbf236e8.tar.gz bcm5719-llvm-813ffcc4f68fbf0b70e8ebfedddafb15cbf236e8.zip |
Change ! ( ...== ...) to !=.
llvm-svn: 680
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/CodeGen/InstrSelection/InstrForest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp b/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp index f7091a29c61..9f4df08d384 100644 --- a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/llvm/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); |