aco/tests: fix omod signed zero tests

If we keep denorms, omod won't be used no matter what.

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31172>
This commit is contained in:
Georg Lehmann 2024-09-13 20:21:25 +02:00 committed by Marge Bot
parent 27cf11dc8a
commit b20d793774

View file

@ -220,8 +220,8 @@ BEGIN_TEST(optimize.output_modifiers)
//>> BB3
//! /* logical preds: BB2, / linear preds: BB2, / kind: uniform, */
program->next_fp_mode.denorm32 = fp_denorm_keep;
program->next_fp_mode.denorm16_64 = fp_denorm_keep;
program->next_fp_mode.denorm32 = fp_denorm_flush;
program->next_fp_mode.denorm16_64 = fp_denorm_flush;
bld.reset(program->create_and_insert_block());
bld.is_sz_preserve = true;
program->blocks[2].linear_succs.push_back(3);