summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-04-24 23:31:35 -0700
committerVinson Lee <vlee@vmware.com>2010-04-24 23:31:35 -0700
commita1a7738223b754044213b969371823ec52b0a9e2 (patch)
treee6e083dbf072bb214ce5a529e237ff5c010bd116 /src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
parent9bc54ca991e15d3a8200f4d64e778bba19338ef5 (diff)
gallivm: Remove NULL check of pointer that can't be NULL.
info cannot be NULL at the call to debug_printf. emit_instruction dereferences info, so at debug_printf it is either not NULL or the program has already crashed.
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
index df2e24c2c9..aed1d583cb 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
@@ -1812,7 +1812,7 @@ lp_build_tgsi_soa(LLVMBuilderRef builder,
const struct tgsi_opcode_info *info = tgsi_get_opcode_info(opcode);
if (!emit_instruction( &bld, &parse.FullToken.FullInstruction, info ))
_debug_printf("warning: failed to translate tgsi opcode %s to LLVM\n",
- info ? info->mnemonic : "<invalid>");
+ info->mnemonic);
}
break;