tejohnson added inline comments.

================
Comment at: clang/lib/CodeGen/BackendUtil.cpp:1016
   case Backend_EmitLL:
-    MPM.addPass(PrintModulePass(*OS, "", CodeGenOpts.EmitLLVMUseLists));
+    if (CodeGenOpts.PrepareForThinLTO && !CodeGenOpts.DisableLLVMPasses) {
+      if (!TheModule->getModuleFlag("EnableSplitLTOUnit"))
----------------
Thanks for adding this too! I'm wondering if the code should be restructured 
slightly to reduce the code duplication. The simplest way might be to handle 
both cases (EmitBC and EmitLL) together, and then check the Action type to 
guard whether calling a *BitcodeWriter pass (optionally setting up the 
additional output file in the ThinLTO BC case) vs PrintModulePass.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137768/new/

https://reviews.llvm.org/D137768

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
  • [PATCH] D137768: [o... Alexander Shaposhnikov via Phabricator via cfe-commits
    • [PATCH] D13776... Alexander Shaposhnikov via Phabricator via cfe-commits
    • [PATCH] D13776... Teresa Johnson via Phabricator via cfe-commits
    • [PATCH] D13776... Alexander Shaposhnikov via Phabricator via cfe-commits

Reply via email to