git: 3ac388e05d9d - main - graphics/mesa-dri: Remove upstreamed patch
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 02 Jan 2023 16:15:05 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/ports/commit/?id=3ac388e05d9df52e7471976b56837194899fd3eb commit 3ac388e05d9df52e7471976b56837194899fd3eb Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2023-01-02 16:13:43 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2023-01-02 16:13:43 +0000 graphics/mesa-dri: Remove upstreamed patch I somehow didn't had the commit that added this patch on my test branch so forgot to remove it. Reported by: Michael Butler <imb@protected-networks.net> Sponsored by: Beckhoff Automation GmbH & Co. KG --- ...patch-src_gallium_drivers_r600_sfn_sfn__optimizer.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/graphics/mesa-dri/files/patch-src_gallium_drivers_r600_sfn_sfn__optimizer.cpp b/graphics/mesa-dri/files/patch-src_gallium_drivers_r600_sfn_sfn__optimizer.cpp deleted file mode 100644 index 56fb029e3fcd..000000000000 --- a/graphics/mesa-dri/files/patch-src_gallium_drivers_r600_sfn_sfn__optimizer.cpp +++ /dev/null @@ -1,16 +0,0 @@ ---- src/gallium/drivers/r600/sfn/sfn_optimizer.cpp.orig 2022-12-14 21:06:11 UTC -+++ src/gallium/drivers/r600/sfn/sfn_optimizer.cpp -@@ -354,7 +354,12 @@ CopyPropFwdVisitor::visit(AluInstr *instr) - auto src = instr->psrc(0); - auto dest = instr->dest(); - -- for (auto& i : dest->uses()) { -+ auto ii = dest->uses().begin(); -+ auto ie = dest->uses().end(); -+ -+ while(ii != ie) { -+ auto i = *ii; -+ ++ii; - /* SSA can always be propagated, registers only in the same block - * and only if they are assigned in the same block */ - bool can_propagate = dest->is_ssa();