commit | 0fdb908e39b22a3c630bb6b727d71748df96f8ac | [log] [tgz] |
---|---|---|
author | Valentin Clement (バレンタイン クレメン) <clementval@gmail.com> | Wed Apr 23 13:09:02 2025 -0700 |
committer | GitHub <noreply@github.com> | Wed Apr 23 13:09:02 2025 -0700 |
tree | 85e78994646c9f80f5a46a2e3bb3ef63f86ae2b1 | |
parent | 563ab56497104199b9fd57df9bd162f2b02cbe92 [diff] |
[flang][cuda][NFC] Update binary name (#137034) Name was changed in https://github.com/llvm/llvm-project/pull/135478
diff --git a/flang/lib/Optimizer/Dialect/CUF/CUFToLLVMIRTranslation.cpp b/flang/lib/Optimizer/Dialect/CUF/CUFToLLVMIRTranslation.cpp index 7ed7f35..5c4e417 100644 --- a/flang/lib/Optimizer/Dialect/CUF/CUFToLLVMIRTranslation.cpp +++ b/flang/lib/Optimizer/Dialect/CUF/CUFToLLVMIRTranslation.cpp
@@ -28,7 +28,7 @@ llvm::IRBuilderBase &builder, LLVM::ModuleTranslation &moduleTranslation) { std::string binaryIdentifier = - op.getName().getLeafReference().str() + "_bin_cst"; + op.getName().getLeafReference().str() + "_binary"; llvm::Module *module = moduleTranslation.getLLVMModule(); llvm::Value *binary = module->getGlobalVariable(binaryIdentifier, true); if (!binary)