[Mlir-commits] [clang] [mlir] [CIR] Implement 'noreturn' attribute for functions/calls. (PR #177978)

Andy Kaylor llvmlistbot at llvm.org
Mon Jan 26 15:49:43 PST 2026


================
@@ -21,7 +21,7 @@ using namespace clang;
 using namespace clang::CIRGen;
 
 CIRGenFunctionInfo *
-CIRGenFunctionInfo::create(CanQualType resultType,
+CIRGenFunctionInfo::create(FunctionType::ExtInfo info, CanQualType resultType,
----------------
andykaylor wrote:

The corresponding function in classic codegen (`CGFunctionInfo::create`) places the `ExtInfo` parameter after `argTypes`. Similarly throughout the functions where you added this. I don't suppose it matters other than making side-by-side comparisons to see what's missing easier.

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


More information about the Mlir-commits mailing list