[clang] [CIR] Add `-emit-cir-bc` option to cc1 (PR #192211)

via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 16 02:02:13 PDT 2026


================
@@ -205,6 +214,8 @@ getOutputStream(CompilerInstance &CI, StringRef InFile,
     return CI.createDefaultOutputFile(false, InFile, "s");
   case CIRGenAction::OutputType::EmitCIR:
     return CI.createDefaultOutputFile(false, InFile, "cir");
+  case CIRGenAction::OutputType::EmitCIRBC:
+    return CI.createDefaultOutputFile(false, InFile, "cirbc");
----------------
NotLebedev wrote:

Fixed

https://github.com/llvm/llvm-project/pull/192211


More information about the cfe-commits mailing list