diff options
author | Jonathan White <[email protected]> | 2008-09-15 11:56:21 -0600 |
---|---|---|
committer | Jonathan White <[email protected]> | 2008-09-15 11:57:59 -0600 |
commit | 367774a62aa0627c5589e91ab7b411634113c815 (patch) | |
tree | aff94f66cbb27176bf6225a996997f78d50f7848 /src/gallium/auxiliary/rtasm | |
parent | 4c9cd725d54edf9baacef83d94c6487c7d592090 (diff) |
Fixed emit_RRR
Diffstat (limited to 'src/gallium/auxiliary/rtasm')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_ppc_spe.c | 2 |
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 8718be9dedb..74cd4176e7b 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); } } |