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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user