projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65bdb87
)
st/mesa: fix incorrect loop over instruction src regs
author
Brian Paul
<brianp@vmware.com>
Tue, 16 Aug 2011 22:30:52 +0000
(16:30 -0600)
committer
Brian Paul
<brianp@vmware.com>
Wed, 17 Aug 2011 14:12:54 +0000
(08:12 -0600)
The array of src regs is of size 3, not 4.
src/mesa/state_tracker/st_glsl_to_tgsi.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
index aef23e7d2073bfd27d6b1bb51f2ade50dc30f15f..7b90c812595a0f3433d04c8269eb7239160cdf9b 100644
(file)
--- a/
src/mesa/state_tracker/st_glsl_to_tgsi.cpp
+++ b/
src/mesa/state_tracker/st_glsl_to_tgsi.cpp
@@
-3443,7
+3443,7
@@
glsl_to_tgsi_visitor::eliminate_dead_code_advanced(void)
/* Continuing the block, clear any channels from the write array that
* are read by this instruction.
*/
- for (
int i = 0; i < 4
; i++) {
+ for (
unsigned i = 0; i < Elements(inst->src)
; i++) {
if (inst->src[i].file == PROGRAM_TEMPORARY && inst->src[i].reladdr){
/* Any temporary might be read, so no dead code elimination
* across this instruction.