diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-27 14:15:57 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-28 17:17:48 +0000 |
commit | 95fc71ece29f97b093d5eb7d1146f1b55c61aae5 (patch) | |
tree | 02c7477c504e38e6dc70f9c597786f3529e8da1e /src/panfrost/bifrost/compiler.h | |
parent | df486689c07d3965c9e4efa5d9444b91aecdc208 (diff) |
pan/bi: Deduplicate csel/cmp cond
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4789>
Diffstat (limited to 'src/panfrost/bifrost/compiler.h')
-rw-r--r-- | src/panfrost/bifrost/compiler.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/panfrost/bifrost/compiler.h b/src/panfrost/bifrost/compiler.h index b18232e5846..4b3d1c68e51 100644 --- a/src/panfrost/bifrost/compiler.h +++ b/src/panfrost/bifrost/compiler.h @@ -278,7 +278,6 @@ typedef struct { enum bi_reduce_op reduce; enum bi_table_op table; enum bi_frexp_op frexp; - enum bi_cond compare; enum bi_tex_op texture; /* For FMA/ADD, should we add a biased exponent? */ @@ -293,7 +292,7 @@ typedef struct { /* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make * sense here but you can always just use a move for that */ - enum bi_cond csel_cond; + enum bi_cond cond; /* For BLEND -- the location 0-7 */ unsigned blend_location; |