summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/rtasm
diff options
context:
space:
mode:
authorJonathan White <jwhite@tungstengraphics.com>2008-09-15 11:56:21 -0600
committerJonathan White <jwhite@tungstengraphics.com>2008-09-15 11:57:59 -0600
commit367774a62aa0627c5589e91ab7b411634113c815 (patch)
treeaff94f66cbb27176bf6225a996997f78d50f7848 /src/gallium/auxiliary/rtasm
parent4c9cd725d54edf9baacef83d94c6487c7d592090 (diff)
Fixed emit_RRR
Diffstat (limited to 'src/gallium/auxiliary/rtasm')
-rw-r--r--src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c b/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c
index 8718be9ded..74cd4176e7 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c
@@ -194,7 +194,7 @@ static void emit_RRR(struct spe_function *p, unsigned op, unsigned rT,
assert(p->num_inst <= p->max_inst);
if (p->print) {
indent(p);
- printf("%s\tr%d, r%d, r%d, r%d\n", rem_prefix(name), rT, rA, rB, rB);
+ printf("%s\tr%d, r%d, r%d, r%d\n", rem_prefix(name), rT, rA, rB, rC);
}
}