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 | a1cd45213d6b60da291661d81d57abba4e7a3cec (patch) | |
tree | bfcd3201810dbc85ff836367f29329308aad9506 /llvm/lib/CodeGen/StrongPHIElimination.cpp | |
parent | 55f4e5d2dd3081bc2c54aa11bc4dc854a4269f33 (diff) | |
download | bcm5719-llvm-a1cd45213d6b60da291661d81d57abba4e7a3cec.tar.gz bcm5719-llvm-a1cd45213d6b60da291661d81d57abba4e7a3cec.zip |
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.
llvm-svn: 44002
Diffstat (limited to 'llvm/lib/CodeGen/StrongPHIElimination.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StrongPHIElimination.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/StrongPHIElimination.cpp b/llvm/lib/CodeGen/StrongPHIElimination.cpp index 5f84b586cb8..f64186e8e8c 100644 --- a/llvm/lib/CodeGen/StrongPHIElimination.cpp +++ b/llvm/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" |