diff options
author | Zhou Sheng <zhousheng00@gmail.com> | 2007-01-11 10:33:26 +0000 |
---|---|---|
committer | Zhou Sheng <zhousheng00@gmail.com> | 2007-01-11 10:33:26 +0000 |
commit | 057809ac1c78c3456e8f1481330fa2bcd2b85029 (patch) | |
tree | 4cf493ea3418bf29be01d5ce85fe83a0a620afa2 | |
parent | 11b910c71f9822c7a55b310c3b590b0c447c5715 (diff) |
Fixed indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33072 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/CorrelatedExprs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Transforms/Scalar/CorrelatedExprs.cpp b/lib/Transforms/Scalar/CorrelatedExprs.cpp index ee220d19e5..203b7fa238 100644 --- a/lib/Transforms/Scalar/CorrelatedExprs.cpp +++ b/lib/Transforms/Scalar/CorrelatedExprs.cpp @@ -906,10 +906,10 @@ void CEE::PropagateEquality(Value *Op0, Value *Op1, RegionInfo &RI) { } // Propagate information about Op0 to Op1 & visa versa - PropagateRelation(ICmpInst::ICMP_EQ, Op0, Op1, RI); - PropagateRelation(ICmpInst::ICMP_EQ, Op1, Op0, RI); - PropagateRelation(FCmpInst::FCMP_OEQ, Op0, Op1, RI); - PropagateRelation(FCmpInst::FCMP_OEQ, Op1, Op0, RI); + PropagateRelation(ICmpInst::ICMP_EQ, Op0, Op1, RI); + PropagateRelation(ICmpInst::ICMP_EQ, Op1, Op0, RI); + PropagateRelation(FCmpInst::FCMP_OEQ, Op0, Op1, RI); + PropagateRelation(FCmpInst::FCMP_OEQ, Op1, Op0, RI); } |