[clang] [CIR] Enable x86_64 calling-convention lowering by default (PR #215026)

Adam Smith via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 10 14:02:27 PDT 2026


================
@@ -423,9 +423,10 @@ class FrontendOptions {
   LLVM_PREFERRED_TYPE(bool)
   unsigned ClangIREnableIdiomRecognizer : 1;
 
-  /// Enable Clang IR (CIR) calling-convention lowering
+  /// Run the Clang IR (CIR) calling-convention lowering pass.  A no-op on
+  /// targets whose calling convention is not yet implemented.
   LLVM_PREFERRED_TYPE(bool)
-  unsigned ClangIREnableCallConvLowering : 1;
+  unsigned ClangIRCallConvLowering : 1;
----------------
adams381 wrote:

After our discussion offline, I will open a new PR to address these after this merges.

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


More information about the cfe-commits mailing list