nir/serialize: do ctx = {0} instead of manual initializations
authorMarek Olšák <marek.olsak@amd.com>
Tue, 5 Nov 2019 02:29:56 +0000 (21:29 -0500)
committerMarek Olšák <marek.olsak@amd.com>
Thu, 21 Nov 2019 23:49:57 +0000 (18:49 -0500)
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
src/compiler/nir/nir_serialize.c

index b8422209e7d6f7d8cec9a01083e9725ec58557f8..8a09299fa0e31ece038ff7704ae66ec040723395 100644 (file)
@@ -1145,9 +1145,8 @@ read_function(read_ctx *ctx)
 void
 nir_serialize(struct blob *blob, const nir_shader *nir, bool strip)
 {
-   write_ctx ctx;
+   write_ctx ctx = {0};
    ctx.remap_table = _mesa_pointer_hash_table_create(NULL);
-   ctx.next_idx = 0;
    ctx.blob = blob;
    ctx.nir = nir;
    ctx.strip = strip;
@@ -1207,12 +1206,11 @@ nir_deserialize(void *mem_ctx,
                 const struct nir_shader_compiler_options *options,
                 struct blob_reader *blob)
 {
-   read_ctx ctx;
+   read_ctx ctx = {0};
    ctx.blob = blob;
    list_inithead(&ctx.phi_srcs);
    ctx.idx_table_len = blob_read_uint32(blob);
    ctx.idx_table = calloc(ctx.idx_table_len, sizeof(uintptr_t));
-   ctx.next_idx = 0;
 
    uint32_t strings = blob_read_uint32(blob);
    char *name = (strings & 0x1) ? blob_read_string(blob) : NULL;