mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 22:10:11 +01:00
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:
parent
27cf11dc8a
commit
b20d793774
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue