================ @@ -2488,8 +2488,10 @@ void CIRToLLVMGlobalOpLowering::setupRegionInitializedLLVMGlobalOp( // in CIRToLLVMGlobalOpLowering::matchAndRewrite() but that will go // away when the placeholders are no longer needed. const bool isConst = op.getConstant(); - assert(!cir::MissingFeatures::addressSpace()); - const unsigned addrSpace = 0; + unsigned addrSpace = 0; + if (auto targetAS = mlir::dyn_cast_if_present<cir::TargetAddressSpaceAttr>( ---------------- andykaylor wrote:
What happens here if the global op uses a language address space? https://github.com/llvm/llvm-project/pull/179082 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
