diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-08 22:20:23 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-08 22:20:23 +0000 |
commit | d195ce1fb6539469bf1e82c41d5a8c2efdb5f61b (patch) | |
tree | 0d63e6fd825a82451a95ba88a8a2d0caedfdc77f /include/llvm/CodeGen/Passes.h | |
parent | ec8cd0655523627004ae4dac8e363ffa7bd25936 (diff) |
Make BreakCriticalMachineEdges available as a pass that can be depended on.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43910 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/Passes.h')
-rw-r--r-- | include/llvm/CodeGen/Passes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h index 5e93525ab4..89e8ba9b37 100644 --- a/include/llvm/CodeGen/Passes.h +++ b/include/llvm/CodeGen/Passes.h @@ -58,6 +58,10 @@ namespace llvm { /// extern const PassInfo *SimpleRegisterCoalescingID; + /// BreakCriticalMachineEdges pass. Breaks critical edges between + /// machine basic blocks. + extern const PassInfo *BreakCriticalMachineEdgesID; + /// TwoAddressInstruction pass - This pass reduces two-address instructions to /// use two operands. This destroys SSA information but it is desired by /// register allocators. |