diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-08-06 02:43:45 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-08-06 02:43:45 +0000 |
commit | aa664d9b923ca70407911fffff00d2c4681703a3 (patch) | |
tree | faa8e71a69fdb1a84171f7c5fe40c8cccb5eb96b /llvm/tools | |
parent | f7d848d0b913d1310135feb348ab58eedb01c1b0 (diff) | |
download | bcm5719-llvm-aa664d9b923ca70407911fffff00d2c4681703a3.tar.gz bcm5719-llvm-aa664d9b923ca70407911fffff00d2c4681703a3.zip |
Factor FlattenCFG out from SimplifyCFG
Patch by: Mei Ye
llvm-svn: 187764
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/lto/LTOCodeGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/lto/LTOCodeGenerator.cpp b/llvm/tools/lto/LTOCodeGenerator.cpp index 776a5b9e96f..6139ade9bce 100644 --- a/llvm/tools/lto/LTOCodeGenerator.cpp +++ b/llvm/tools/lto/LTOCodeGenerator.cpp @@ -118,7 +118,7 @@ void LTOCodeGenerator::initializeLTOPasses() { initializeGVNPass(R); initializeMemCpyOptPass(R); initializeDCEPass(R); - initializeCFGCanonicalizePass(R); + initializeCFGSimplifyPassPass(R); } bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) { |