diff options
author | Marek Olšák <[email protected]> | 2016-08-27 11:48:14 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-09-05 18:01:15 +0200 |
commit | 2975230fdc6a51f4fd9c1edd0504be58dad0955c (patch) | |
tree | a025606b578be0d2da6398fcf6903a27b75dce37 /src | |
parent | 1c13c71ef8eafde8cc3c3baa0b2fa96c6cf19d6c (diff) |
radeonsi: always use the same function signature for llvm.SI.export
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index 12f2df9bfe0..d19111c455b 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -3056,10 +3056,10 @@ static void si_export_null(struct lp_build_tgsi_context *bld_base) args[2] = uint->one; /* DONE bit */ args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_NULL); args[4] = uint->zero; /* COMPR flag (0 = 32-bit export) */ - args[5] = uint->undef; /* R */ - args[6] = uint->undef; /* G */ - args[7] = uint->undef; /* B */ - args[8] = uint->undef; /* A */ + args[5] = base->undef; /* R */ + args[6] = base->undef; /* G */ + args[7] = base->undef; /* B */ + args[8] = base->undef; /* A */ lp_build_intrinsic(base->gallivm->builder, "llvm.SI.export", ctx->voidt, args, 9, 0); |