================ @@ -36,6 +37,76 @@ template <typename ToTest> constexpr bool isCombinedType = false; template <typename T> constexpr bool isCombinedType<CombinedConstructClauseInfo<T>> = true; +namespace { +struct DataOperandInfo { + mlir::Location beginLoc; + mlir::Value varValue; + llvm::StringRef name; + mlir::ValueRange bounds; + + DataOperandInfo(mlir::Location beginLoc, mlir::Value varValue, + llvm::StringRef name, mlir::ValueRange bounds) + : beginLoc(beginLoc), varValue(varValue), name(name), bounds(bounds) {} +}; + +inline mlir::Value createIntExpr(CIRGen::CIRGenFunction &cgf, ---------------- bcardosolopes wrote:
Sounds good, thanks! https://github.com/llvm/llvm-project/pull/140304 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits