aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-01-27 06:11:41 +0000
committerBill Wendling <isanbard@gmail.com>2008-01-27 06:11:41 +0000
commitbeefd3d0f81ecd206601e62228975111c4cf84f4 (patch)
tree52541f887421145410a4b9dad77119abc0e45601 /include/llvm/Transforms
parent553c116a1b94e9c5c7489e6a31908dbb8a76131c (diff)
The CorrelatedExpressionElimination pass is known to be buggy. Remove it.
This fixes PR1769. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Scalar.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index 4e3b21af6c..8e06dc8271 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -184,17 +184,6 @@ FunctionPass *createReassociatePass();
//===----------------------------------------------------------------------===//
//
-// CorrelatedExpressionElimination - This pass eliminates correlated
-// conditions, such as these:
-// if (X == 0)
-// if (X > 2) ; // Known false
-// else
-// Y = X * Z; // = 0
-//
-FunctionPass *createCorrelatedExpressionEliminationPass();
-
-//===----------------------------------------------------------------------===//
-//
// CondPropagationPass - This pass propagates information about conditional
// expressions through the program, allowing it to eliminate conditional
// branches in some cases.