diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-09-17 14:08:37 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-09-17 14:08:37 +0000 |
commit | 86af62c1ad8beda4a897de7732c9776de09dd988 (patch) | |
tree | 25acbd0dc30f1d9bb53199388ae142a946f5a133 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 6000cc0b985cda478932300f36d2792957020e39 (diff) | |
download | bcm5719-llvm-86af62c1ad8beda4a897de7732c9776de09dd988.tar.gz bcm5719-llvm-86af62c1ad8beda4a897de7732c9776de09dd988.zip |
Add a MachinePostDominator pass
This is used in the AMDIL and R600 backends.
llvm-svn: 164029
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp index 65f09412876..a53f6f8d0f1 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -41,6 +41,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeMachineCopyPropagationPass(Registry); initializeMachineCSEPass(Registry); initializeMachineDominatorTreePass(Registry); + initializeMachinePostDominatorTreePass(Registry); initializeMachineLICMPass(Registry); initializeMachineLoopInfoPass(Registry); initializeMachineModuleInfoPass(Registry); |