diff --git a/.pick_status.json b/.pick_status.json index 0bf57cf6e39..7fc2072923e 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -3910,7 +3910,7 @@ "description": "aco: prevent infinite recursion in RA for subdword variables", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": null }, diff --git a/src/amd/compiler/aco_register_allocation.cpp b/src/amd/compiler/aco_register_allocation.cpp index dfa70c624c1..ef733eb4cbc 100644 --- a/src/amd/compiler/aco_register_allocation.cpp +++ b/src/amd/compiler/aco_register_allocation.cpp @@ -396,7 +396,7 @@ std::pair get_reg_simple(ra_ctx& ctx, } if (stride == 1) { - + info.rc = RegClass(rc.type(), size); for (unsigned stride = 8; stride > 1; stride /= 2) { if (size % stride) continue;