[Nouveau] [PATCH 1/1] [same+another] two typos in nouveau_shader.c
Roel Kluin
12o3l at tiscali.nl
Wed Jan 23 13:54:26 PST 2008
There appears to be another typo in the file (this patch includes both fixes):
--
Fix two typos
Signed-off-by: Roel Kluin <12o3l at tiscali.nl>
---
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_shader.c b/src/mesa/drivers/dri/nouveau/nouveau_shader.c
index b6837c5..f0196e9 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_shader.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_shader.c
@@ -554,7 +554,7 @@ nvsDumpInstruction(nvsInstruction * inst, int slot, int lvl)
nvsDumpIndent(lvl);
printf("%s ", opr->name);
- if (!opr->flags & NODS) {
+ if (!(opr->flags & NODS)) {
switch (inst->dest.file) {
case NVS_FILE_RESULT:
printf("result.%s", SFR_STRING(inst->dest.index));
@@ -635,7 +635,7 @@ nvsDisasmHWShaderOp(nvsFunc * shader, int merged)
printf("%s", opi->name);
if (shader->GetPrecision &&
- (!(opi->flags & BRANCH_ALL)) && (!(opi->flags * NODS)) &&
+ (!(opi->flags & BRANCH_ALL)) && (!(opi->flags & NODS)) &&
(op != NVS_OP_NOP))
printf("%s", NVS_PREC_STRING(shader->GetPrecision(shader)));
if (shader->SupportsConditional && shader->SupportsConditional(shader)) {
More information about the Nouveau
mailing list