[clang] [libc] [llvm] [AMDGPU] Use COV6 by default (PR #118515)
Matt Arsenault via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 3 14:43:29 PST 2024
================
@@ -34,7 +34,7 @@
static llvm::cl::opt<unsigned> DefaultAMDHSACodeObjectVersion(
"amdhsa-code-object-version", llvm::cl::Hidden,
- llvm::cl::init(llvm::AMDGPU::AMDHSA_COV5),
+ llvm::cl::init(llvm::AMDGPU::AMDHSA_COV6),
----------------
arsenm wrote:
Actually this is broken, this is the cl::opt which was supposed to be deleted. This isn't actually changing the default, the value comes from the module flag
https://github.com/llvm/llvm-project/pull/118515
More information about the cfe-commits
mailing list