[clang] [mlir] [CIR] Implement 'noreturn' attribute for functions/calls. (PR #177978)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 26 16:52:54 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:
Sorry, I was looking at `arrangeLLVMFunctionInfo` (which corresponds to `arrangeCIRFunctionInfo`) and I guess my brain auto-corrected my reading of the order on this function.
https://github.com/llvm/llvm-project/pull/177978
More information about the cfe-commits
mailing list