clementval added inline comments.
================ Comment at: mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp:1342-1382 +/// Create a constant string location from the MLIR Location information. +static llvm::Constant * +createSourceLocStrFromLocation(Location loc, llvm::OpenMPIRBuilder &builder, + StringRef name, uint32_t &strLen) { + if (auto fileLoc = loc.dyn_cast<FileLineColLoc>()) { + StringRef fileName = fileLoc.getFilename(); + unsigned lineNo = fileLoc.getLine(); ---------------- kiranchandramohan wrote: > clementval wrote: > > Instead of copy pasting this from > > `mlir/lib/Target/LLVMIR/Dialect/OpenACC/OpenACCToLLVMIRTranslation.cpp` can > > you extract it and put it in a common shared file so bith translation can > > use the same code without duplication? > @raghavendhra put up a patch some time back and he faced some issues. It > might be good to check with him or may be he can comment here. > https://reviews.llvm.org/D127037 > https://discourse.llvm.org/t/rfc-for-refactoring-common-code-for-openacc-and-openmp/63833 Just moving the three functions should be trivial. I'm not talking about the processMapOperand. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D142914/new/ https://reviews.llvm.org/D142914 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits