diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-12 01:05:09 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-12 01:05:09 +0000 |
commit | fe0c882e5a6ddf4e3c9f771485fdaa4672759539 (patch) | |
tree | 5c630791aaec2bc691c48fd3f602ada521d3c9f8 /lib/CodeGen/StrongPHIElimination.cpp | |
parent | e7e113361ea550afbb8bebcdc1e736c5d4833f8c (diff) |
As Chris and Evan pointed out, BreakCriticalMachineEdges doesn't really need
to be a pass of its own. Instead, move it out into a helper method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44002 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/StrongPHIElimination.cpp')
-rw-r--r-- | lib/CodeGen/StrongPHIElimination.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/StrongPHIElimination.cpp b/lib/CodeGen/StrongPHIElimination.cpp index 5f84b586cb..f64186e8e8 100644 --- a/lib/CodeGen/StrongPHIElimination.cpp +++ b/lib/CodeGen/StrongPHIElimination.cpp @@ -21,6 +21,7 @@ #define DEBUG_TYPE "strongphielim" #include "llvm/CodeGen/Passes.h" +#include "llvm/CodeGen/BreakCriticalMachineEdge.h" #include "llvm/CodeGen/LiveVariables.h" #include "llvm/CodeGen/MachineDominators.h" #include "llvm/CodeGen/MachineFunctionPass.h" |