From: Vinson Lee Date: Mon, 15 Feb 2010 10:01:20 +0000 (-0800) Subject: mesa: Remove pointless comparison of unsigned integer with a negative constant. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a05fdbcb719ac64e6be842372813f0f4ca2f4f93;p=mesa.git mesa: Remove pointless comparison of unsigned integer with a negative constant. --- diff --git a/src/mesa/shader/prog_execute.c b/src/mesa/shader/prog_execute.c index aea4b074b39..ee422e7ec8f 100644 --- a/src/mesa/shader/prog_execute.c +++ b/src/mesa/shader/prog_execute.c @@ -1780,15 +1780,10 @@ _mesa_execute_program(GLcontext * ctx, break; case OPCODE_PRINT: { - if (inst->SrcReg[0].File != -1) { - GLfloat a[4]; - fetch_vector4(&inst->SrcReg[0], machine, a); - _mesa_printf("%s%g, %g, %g, %g\n", (const char *) inst->Data, - a[0], a[1], a[2], a[3]); - } - else { - _mesa_printf("%s\n", (const char *) inst->Data); - } + GLfloat a[4]; + fetch_vector4(&inst->SrcReg[0], machine, a); + _mesa_printf("%s%g, %g, %g, %g\n", (const char *) inst->Data, + a[0], a[1], a[2], a[3]); } break; case OPCODE_END: