radv: fix mask attribs properly.
authorDave Airlie <airlied@redhat.com>
Thu, 30 Mar 2017 03:09:03 +0000 (13:09 +1000)
committerDave Airlie <airlied@redhat.com>
Thu, 30 Mar 2017 03:09:30 +0000 (13:09 +1000)
some days it just doesn't pay to get out of bed.

Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/common/ac_nir_to_llvm.c

index 5e69a75b4cb57bdb5e55823eddd57a3b22d613d7..8e770495f0163584ecd2bf3109977e3c9362b726 100644 (file)
@@ -4178,7 +4178,7 @@ handle_shader_output_decl(struct nir_to_llvm_context *ctx,
 {
        int idx = variable->data.location + variable->data.index;
        unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
-       unsigned mask_attribs;
+       uint64_t mask_attribs;
        variable->data.driver_location = idx * 4;
 
        mask_attribs = ((1ull << attrib_count) - 1) << idx;
@@ -4195,7 +4195,7 @@ handle_shader_output_decl(struct nir_to_llvm_context *ctx,
                                attrib_count = 2;
                        else
                                attrib_count = 1;
-                       mask_attribs = 1 << idx;
+                       mask_attribs = 1ull << idx;
                }
        }