Mesa (master): nir: Add GLSL_TYPE_[U]INT64 to some switch statements

Jason Ekstrand jekstrand at kemper.freedesktop.org
Mon Apr 17 03:15:27 UTC 2017


Module: Mesa
Branch: master
Commit: 4cf079f7f231bbbf18cb6952ba0de90d9f378ebb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4cf079f7f231bbbf18cb6952ba0de90d9f378ebb

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Fri Apr 14 14:41:43 2017 -0700

nir: Add GLSL_TYPE_[U]INT64 to some switch statements

Reviewed-by: Alejandro Piñeiro <apinheiro at igalia.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>

---

 src/compiler/nir/nir.c                  | 2 ++
 src/compiler/nir/nir_split_var_copies.c | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c
index 43fa60f0b6..0abf9b6212 100644
--- a/src/compiler/nir/nir.c
+++ b/src/compiler/nir/nir.c
@@ -699,7 +699,9 @@ deref_foreach_leaf_build_recur(nir_deref_var *deref, nir_deref *tail,
    assert(tail->child == NULL);
    switch (glsl_get_base_type(tail->type)) {
    case GLSL_TYPE_UINT:
+   case GLSL_TYPE_UINT64:
    case GLSL_TYPE_INT:
+   case GLSL_TYPE_INT64:
    case GLSL_TYPE_FLOAT:
    case GLSL_TYPE_DOUBLE:
    case GLSL_TYPE_BOOL:
diff --git a/src/compiler/nir/nir_split_var_copies.c b/src/compiler/nir/nir_split_var_copies.c
index 58c787342f..15a185ec8d 100644
--- a/src/compiler/nir/nir_split_var_copies.c
+++ b/src/compiler/nir/nir_split_var_copies.c
@@ -147,7 +147,9 @@ split_var_copy_instr(nir_intrinsic_instr *old_copy,
       break;
 
    case GLSL_TYPE_UINT:
+   case GLSL_TYPE_UINT64:
    case GLSL_TYPE_INT:
+   case GLSL_TYPE_INT64:
    case GLSL_TYPE_FLOAT:
    case GLSL_TYPE_DOUBLE:
    case GLSL_TYPE_BOOL:




More information about the mesa-commit mailing list