freedreno/ir3: fix old compiler after f6b2e8af74

If first_driver_param is left as zero (calloc'd struct), the result is
c0 getting clobbered.

Signed-off-by: Rob Clark <robclark@freedesktop.org>
This commit is contained in:
Rob Clark 2015-03-04 11:36:32 -05:00
parent 34ff9bc669
commit b709adf7cc

View file

@ -195,6 +195,7 @@ compile_init(struct ir3_compile_context *ctx, struct ir3_shader_variant *so,
info->file_max[TGSI_FILE_INPUT] + 1 +
info->file_max[TGSI_FILE_OUTPUT] + 1;
so->first_driver_param = ~0;
so->first_immediate = ctx->base_reg[TGSI_FILE_IMMEDIATE];
ctx->immediate_idx = 4 * (ctx->info.file_max[TGSI_FILE_IMMEDIATE] + 1);