[PATCH] D38517: Enabling new pass manager in LTO (and thinLTO) link step via -fexperimental-new-pass-manager option

2017-10-04 Thread Sean Fertile via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL314964: Enabling new pass manager in LTO (and thinLTO) link step. (authored by sfertile). Changed prior to commit: https://reviews.llvm.org/D38517?vs=117677&id=117771#toc Repository: rL LLVM https:/

[PATCH] D38517: Enabling new pass manager in LTO (and thinLTO) link step via -fexperimental-new-pass-manager option

2017-10-04 Thread Teresa Johnson via Phabricator via cfe-commits
tejohnson accepted this revision. tejohnson added a comment. This revision is now accepted and ready to land. LGTM thanks! Repository: rL LLVM https://reviews.llvm.org/D38517 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.ll

[PATCH] D38517: Enabling new pass manager in LTO (and thinLTO) link step via -fexperimental-new-pass-manager option

2017-10-04 Thread Graham Yiu via Phabricator via cfe-commits
gyiu updated this revision to Diff 117677. gyiu added a comment. Add new testcase to make sure plugin-opt is passed to gold linker to enable new pass manager. Repository: rL LLVM https://reviews.llvm.org/D38517 Files: lib/Driver/ToolChains/CommonArgs.cpp test/Driver/gold-lto-new-pass-ma

[PATCH] D38517: Enabling new pass manager in LTO (and thinLTO) link step via -fexperimental-new-pass-manager option

2017-10-03 Thread Teresa Johnson via Phabricator via cfe-commits
tejohnson added a comment. Thanks for adding this. Please add a test like the one for -ffunction-sections (tools/clang/test/Driver/gold-lto-sections.c). Repository: rL LLVM https://reviews.llvm.org/D38517 ___ cfe-commits mailing list cfe-commits

[PATCH] D38517: Enabling new pass manager in LTO (and thinLTO) link step via -fexperimental-new-pass-manager option

2017-10-03 Thread Graham Yiu via Phabricator via cfe-commits
gyiu created this revision. Herald added subscribers: inglorion, mehdi_amini. Modifications to driver and gold plugin code to get the new pass manager path enabled in LTO (and thinLTO). Repository: rL LLVM https://reviews.llvm.org/D38517 Files: lib/Driver/ToolChains/CommonArgs.cpp tools