[libc-commits] [libc] [libc] DRAFT: Add Generic and NVPTX Sin Benchmark (PR #99795)
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Sat Jul 27 19:18:28 PDT 2024
================
@@ -98,7 +100,9 @@ template <typename F, typename T1, typename T2>
auto result = f(arg1, arg2);
- asm("v_or_b32 %[v_reg], 0, %[v_reg]\n" ::[v_reg] "v"(result) :);
+ asm("v_or_b32 %[v_reg], 0, %[v_reg]\n" ::[v_reg] "v"(
+ static_cast<uint32_t>(result))
+ :);
----------------
jhuber6 wrote:
Unrelated formatting change? I thin you last colon can be omitted here.
https://github.com/llvm/llvm-project/pull/99795
More information about the libc-commits
mailing list