git: 4ab820d58246 - 2023Q2 - devel/llvm16: backport fix for generate arm_neon.h

From: Brooks Davis <brooks_at_FreeBSD.org>
Date: Fri, 23 Jun 2023 23:38:06 UTC
The branch 2023Q2 has been updated by brooks:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4ab820d58246c800467103fda108aa4f643f1211

commit 4ab820d58246c800467103fda108aa4f643f1211
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2023-06-23 20:54:07 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2023-06-23 21:02:19 +0000

    devel/llvm16: backport fix for generate arm_neon.h
    
    Backport db49231: [clang][BFloat] Avoid redefining bfloat16_t in
    arm_neon.h.
    
    This fixes builds of FreeBSD/aarch64.  The change was merged
    to the llvm16 in src prior to commit.
    
    (cherry picked from commit 4b887326f2a149bbcf9adb2ab4365aeea4116cbc)
---
 devel/llvm16/Makefile                          |  2 +-
 devel/llvm16/files/patch-backport-llvm-db49231 | 50 ++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 1 deletion(-)

diff --git a/devel/llvm16/Makefile b/devel/llvm16/Makefile
index 025003aef3a9..03b7afe59371 100644
--- a/devel/llvm16/Makefile
+++ b/devel/llvm16/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	llvm
 DISTVERSION=	16.0.6
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	devel lang
 MASTER_SITES=	https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION:S/rc/-rc/}/ \
 		https://${PRE_}releases.llvm.org/${LLVM_RELEASE}${RCDIR}/
diff --git a/devel/llvm16/files/patch-backport-llvm-db49231 b/devel/llvm16/files/patch-backport-llvm-db49231
new file mode 100644
index 000000000000..04823b527c7a
--- /dev/null
+++ b/devel/llvm16/files/patch-backport-llvm-db49231
@@ -0,0 +1,50 @@
+commit db492316399a0edc26788265c7fce78c63a0f838
+Author: Dimitry Andric <dimitry@andric.com>
+Date:   Wed May 3 17:53:59 2023 +0200
+
+    [clang][BFloat] Avoid redefining bfloat16_t in arm_neon.h
+    
+    As of https://reviews.llvm.org/D79708, clang-tblgen generates `arm_neon.h`,
+    `arm_sve.h` and `arm_bf16.h`, and all those generated files will contain a
+    typedef of `bfloat16_t`. However, `arm_neon.h` and `arm_sve.h` include
+    `arm_bf16.h` immediately before their own typedef:
+    
+        #include <arm_bf16.h>
+        typedef __bf16 bfloat16_t;
+    
+    With a recent version of clang (I used 16.0.1) this results in warnings:
+    
+        /usr/lib/clang/16/include/arm_neon.h:38:16: error: redefinition of typedef 'bfloat16_t' is a C11 feature [-Werror,-Wtypedef-redefinition]
+    
+    Since `arm_bf16.h` is very likely supposed to be the one true place where
+    `bfloat16_t` is defined, I propose to delete the duplicate typedefs from the
+    generated `arm_neon.h` and `arm_sve.h`.
+    
+    Reviewed By: sdesmalen, simonbutcher
+    
+    Differential Revision: https://reviews.llvm.org/D148822
+
+diff --git clang/utils/TableGen/NeonEmitter.cpp clang/utils/TableGen/NeonEmitter.cpp
+index 51bb774c6da9..6ef5790731a6 100644
+--- clang/utils/TableGen/NeonEmitter.cpp
++++ clang/utils/TableGen/NeonEmitter.cpp
+@@ -2353,7 +2353,6 @@ void NeonEmitter::run(raw_ostream &OS) {
+   OS << "#include <stdint.h>\n\n";
+ 
+   OS << "#include <arm_bf16.h>\n";
+-  OS << "typedef __bf16 bfloat16_t;\n";
+ 
+   // Emit NEON-specific scalar typedefs.
+   OS << "typedef float float32_t;\n";
+diff --git clang/utils/TableGen/SveEmitter.cpp clang/utils/TableGen/SveEmitter.cpp
+index bc50cbad4b54..d5d3f5fe558a 100644
+--- clang/utils/TableGen/SveEmitter.cpp
++++ clang/utils/TableGen/SveEmitter.cpp
+@@ -1103,7 +1103,6 @@ void SVEEmitter::createHeader(raw_ostream &OS) {
+   OS << "typedef __SVBFloat16_t svbfloat16_t;\n";
+ 
+   OS << "#include <arm_bf16.h>\n";
+-  OS << "typedef __bf16 bfloat16_t;\n";
+ 
+   OS << "typedef __SVFloat32_t svfloat32_t;\n";
+   OS << "typedef __SVFloat64_t svfloat64_t;\n";