<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <pre class="log" id="log" wrap="">Reviewed-by: Andres Rodriguez<a href="mailto:andresx7@gmail.com" class="moz-txt-link-rfc2396E"><andresx7@gmail.com></a></pre>
    <br>
    <div class="moz-cite-prefix">On 2017-01-30 02:21 PM, Dave Airlie
      wrote:<br>
    </div>
    <blockquote cite="mid:20170130192116.31890-1-airlied@gmail.com"
      type="cite">
      <pre wrap="">From: Dave Airlie <a class="moz-txt-link-rfc2396E" href="mailto:airlied@redhat.com"><airlied@redhat.com></a>

This fixes a bunch of buffer related:
dEQP-VK.memory.pipeline_barrier.*
tests, that were crashing in LLVM due to this being missing.

Cc: "17.0" <a class="moz-txt-link-rfc2396E" href="mailto:mesa-stable@lists.freedesktop.org"><mesa-stable@lists.freedesktop.org></a>
Signed-off-by: Dave Airlie <a class="moz-txt-link-rfc2396E" href="mailto:airlied@redhat.com"><airlied@redhat.com></a>
---
 src/amd/common/ac_nir_to_llvm.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
index bfe6a2e..f0ac3d3 100644
--- a/src/amd/common/ac_nir_to_llvm.c
+++ b/src/amd/common/ac_nir_to_llvm.c
@@ -3224,6 +3224,11 @@ static void visit_tex(struct nir_to_llvm_context *ctx, nir_tex_instr *instr)
                }
        }
 
+       if (instr->op == nir_texop_txs && instr->sampler_dim == GLSL_SAMPLER_DIM_BUF) {
+               result = get_buffer_size(ctx, res_ptr, false);
+               goto write_result;
+       }
+
        if (instr->op == nir_texop_texture_samples) {
                LLVMValueRef res, samples, is_msaa;
                res = LLVMBuildBitCast(ctx->builder, res_ptr, ctx->v8i32, "");
</pre>
    </blockquote>
    <br>
  </body>
</html>