diff options
author | Brian <brian@yutani.localnet.net> | 2006-12-15 15:36:29 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2006-12-15 15:36:29 -0700 |
commit | fa8059a89c91405615c0e0f73b2c469ccb27fb91 (patch) | |
tree | 044795e79950efeb4fdfefe6823d17ea83a00428 | |
parent | 9b00fa9ac24cb5c2e8740dac4b8c2c28e6b861f5 (diff) |
fix double-printing of comment info
-rw-r--r-- | src/mesa/shader/prog_print.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index 7bc5016987..b34bbbd482 100644 --- a/src/mesa/shader/prog_print.c +++ b/src/mesa/shader/prog_print.c @@ -208,9 +208,6 @@ _mesa_print_alu_instruction(const struct prog_instruction *inst, _mesa_printf(", "); } - if (inst->Comment) - _mesa_printf(" # %s", inst->Comment); - print_comment(inst); } |