[clang] [CIR] Upstream support for setjmp & longjmp builtins (PR #178989)

Andy Kaylor via cfe-commits cfe-commits at lists.llvm.org
Fri Feb 13 12:15:05 PST 2026


================
@@ -525,6 +525,7 @@ class CIRGenBuilderTy : public cir::CIRBaseBuilderTy {
     return createAlignedLoad(loc, ty, ptr, align.getAsAlign());
   }
 
+  using CIRBaseBuilderTy::createStore;
----------------
andykaylor wrote:

I see. It seems I've led you astray. I found that the classic codegen declaration of CGBuilderTy::CreateStore has this comment:

  // Note that we intentionally hide the CreateStore APIs that don't
  // take an alignment.

I apologize for the confusion. I'll suggest changes below to handle the alignment.

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


More information about the cfe-commits mailing list