diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-02-10 07:42:16 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-15 10:21:34 +0000 |
| commit | adbb395e7a34669e903a758f4cd55d80f9da2fc3 (patch) | |
| tree | 258e01fb4ca4a33c3a84c967a709de354d8e06f6 /meta/recipes-graphics/mesa/files | |
| parent | 4e07f56dced0b06d2cb60530e3989f656eede2cd (diff) | |
| download | poky-adbb395e7a34669e903a758f4cd55d80f9da2fc3.tar.gz | |
mesa: update 22.3.3 -> 22.3.5
(From OE-Core rev: c7f623a9ef6809db60a792b0e2bd1f41c421a8b3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/files')
| -rw-r--r-- | meta/recipes-graphics/mesa/files/0001-nir-nir_opt_move-fix-ALWAYS_INLINE-compiler-error.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-graphics/mesa/files/0001-nir-nir_opt_move-fix-ALWAYS_INLINE-compiler-error.patch b/meta/recipes-graphics/mesa/files/0001-nir-nir_opt_move-fix-ALWAYS_INLINE-compiler-error.patch deleted file mode 100644 index 1cf23492fe..0000000000 --- a/meta/recipes-graphics/mesa/files/0001-nir-nir_opt_move-fix-ALWAYS_INLINE-compiler-error.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 267dd1f4d571ee606141aa66f1665aa152b4e911 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: t0b3 <thomas.bettler@gmail.com> | ||
| 3 | Date: Sat, 10 Dec 2022 14:32:53 +0100 | ||
| 4 | Subject: [PATCH] nir/nir_opt_move: fix ALWAYS_INLINE compiler error | ||
| 5 | |||
| 6 | Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> | ||
| 7 | Reviewed-by: Adam Jackson <ajax@redhat.com> | ||
| 8 | Closes: #6825 | ||
| 9 | Fixes: f1d20ec6 ("nir/nir_opt_move: handle non-SSA defs ") | ||
| 10 | Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17439> | ||
| 11 | |||
| 12 | Upstream-Status: Backport [https://gitlab.freedesktop.org/mesa/mesa/-/commit/267dd1f4d571ee606141aa66f1665aa152b4e911] | ||
| 13 | --- | ||
| 14 | src/compiler/nir/nir_opt_move.c | 4 ++-- | ||
| 15 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/src/compiler/nir/nir_opt_move.c b/src/compiler/nir/nir_opt_move.c | ||
| 18 | index 81bcde5c436..9aeb9f4cf86 100644 | ||
| 19 | --- a/src/compiler/nir/nir_opt_move.c | ||
| 20 | +++ b/src/compiler/nir/nir_opt_move.c | ||
| 21 | @@ -51,13 +51,13 @@ | ||
| 22 | * lower register pressure. | ||
| 23 | */ | ||
| 24 | |||
| 25 | -static ALWAYS_INLINE bool | ||
| 26 | +static inline bool | ||
| 27 | src_is_ssa(nir_src *src, void *state) | ||
| 28 | { | ||
| 29 | return src->is_ssa; | ||
| 30 | } | ||
| 31 | |||
| 32 | -static ALWAYS_INLINE bool | ||
| 33 | +static inline bool | ||
| 34 | instr_reads_register(nir_instr *instr) | ||
| 35 | { | ||
| 36 | return !nir_foreach_src(instr, src_is_ssa, NULL); | ||
