[flang-commits] [flang] [clang] [Flang] Add code-object-version option (PR #72638)
Sergio Afonso via flang-commits
flang-commits at lists.llvm.org
Fri Nov 17 05:03:50 PST 2023
================
@@ -264,6 +263,37 @@ static void addDepdendentLibs(mlir::ModuleOp &mlirModule,
}
}
+// Add to MLIR code target specific items which are dependent on target
+// configuration specified by the user
+static void addTargetSpecificMLIRItems(mlir::ModuleOp &mlirModule,
+ CompilerInstance &ci) {
+ const TargetOptions &targetOpts = ci.getInvocation().getTargetOpts();
+ const llvm::Triple triple(targetOpts.triple);
+ if (triple.isAMDGPU()) {
+ unsigned oclcABIVERsion;
+ const unsigned defaultOclcABIVERsion = 400;
----------------
skatrak wrote:
Would it be possible/advisable to have this constant somewhere shared between clang and flang, so they are guaranteed to default to the same ABI version?
https://github.com/llvm/llvm-project/pull/72638
More information about the flang-commits
mailing list