diff options
author | Ian Romanick <[email protected]> | 2016-09-07 14:43:30 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-01-20 15:41:23 -0800 |
commit | 30164d501dd9d9e8d13ada1f030b36f7306bf7a7 (patch) | |
tree | 90d0f15cc383eb67afbf3a919df3a8b34d070bc3 /src/compiler/nir | |
parent | 3c9b35372b955a69fd21dc4f83fac32ed2b7b53f (diff) |
nir: Add support for 64-bit integer types to split_var_copies_block
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/compiler/nir')
-rw-r--r-- | src/compiler/nir/nir_split_var_copies.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_split_var_copies.c b/src/compiler/nir/nir_split_var_copies.c index 94a45ee26a6..58c787342f9 100644 --- a/src/compiler/nir/nir_split_var_copies.c +++ b/src/compiler/nir/nir_split_var_copies.c @@ -237,6 +237,8 @@ split_var_copies_block(nir_block *block, struct split_var_copies_state *state) break; case GLSL_TYPE_INT: case GLSL_TYPE_UINT: + case GLSL_TYPE_INT64: + case GLSL_TYPE_UINT64: case GLSL_TYPE_BOOL: assert(!glsl_type_is_matrix(src_tail->type)); break; |