[llvm] [openmp][nfc] Use builtin align instead of handcoding utils (PR #131918)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 14:17:44 PDT 2025
================
@@ -78,7 +78,7 @@ struct RecordReplayTy {
Device->allocate(1024, /*HstPtr=*/nullptr, TARGET_ALLOC_DEFAULT);
Device->free(Addr);
// Align Address to MaxMemoryAllocation
- Addr = (void *)utils::alignPtr((Addr), MaxMemoryAllocation);
+ Addr = __builtin_align_up(Addr, MaxMemoryAllocation);
----------------
jhuber6 wrote:
This is compiled with as low as GCC 7.3 I believe, though we are floating around making the projects build deprecated. Does GCC support this?
https://github.com/llvm/llvm-project/pull/131918
More information about the llvm-commits
mailing list