[clang] [X86] Consistently use __inline__ keyword in intrin.h (PR #117856)

2024-11-27 Thread Simon Pilgrim via cfe-commits
https://github.com/RKSimon closed https://github.com/llvm/llvm-project/pull/117856 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Consistently use __inline__ keyword in intrin.h (PR #117856)

2024-11-27 Thread Maurice Heumann via cfe-commits
momo5502 wrote: > LGTM - cheers Thank you, can you merge it for me plase :) https://github.com/llvm/llvm-project/pull/117856 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Consistently use __inline__ keyword in intrin.h (PR #117856)

2024-11-27 Thread Simon Pilgrim via cfe-commits
https://github.com/RKSimon approved this pull request. LGTM - cheers https://github.com/llvm/llvm-project/pull/117856 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Consistently use __inline__ keyword in intrin.h (PR #117856)

2024-11-27 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Maurice Heumann (momo5502) Changes Using `inline` instead of `__inline__` may cause duplicate symbol errors in some scenarios. This fixes #117854 --- Full diff: https://github.com/llvm/llvm-project/pull/117856.diff 1 Files Affected: -

[clang] [X86] Consistently use __inline__ keyword in intrin.h (PR #117856)

2024-11-27 Thread Maurice Heumann via cfe-commits
https://github.com/momo5502 created https://github.com/llvm/llvm-project/pull/117856 Using `inline` instead of `__inline__` may cause duplicate symbol errors in some scenarios. This fixes #117854 >From 2048ca63a5bdf1a5858986a849a6046e307f412d Mon Sep 17 00:00:00 2001 From: Maurice Heumann Da