Mesa (master): mesa: Remove pointless comparison of unsigned integer with a negative constant.

Vinson Lee vlee at kemper.freedesktop.org
Mon Feb 15 10:04:23 UTC 2010


Module: Mesa
Branch: master
Commit: a05fdbcb719ac64e6be842372813f0f4ca2f4f93
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a05fdbcb719ac64e6be842372813f0f4ca2f4f93

Author: Vinson Lee <vlee at vmware.com>
Date:   Mon Feb 15 02:01:20 2010 -0800

mesa: Remove pointless comparison of unsigned integer with a negative constant.

---

 src/mesa/shader/prog_execute.c |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/src/mesa/shader/prog_execute.c b/src/mesa/shader/prog_execute.c
index aea4b07..ee422e7 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:




More information about the mesa-commit mailing list