mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
fix typos
This commit is contained in:
parent
a0d6b506cd
commit
c155ae1dfe
1 changed files with 2 additions and 2 deletions
|
|
@ -963,7 +963,7 @@ emit_negation(slang_gen_context *gc, slang_ir_node *n, struct gl_program *prog)
|
||||||
inst->Comment = n->Comment;
|
inst->Comment = n->Comment;
|
||||||
|
|
||||||
return inst;
|
return inst;
|
||||||
#endif
|
#else
|
||||||
/* XXX this is something we can optimize for, with a bit of work.*/
|
/* XXX this is something we can optimize for, with a bit of work.*/
|
||||||
abort();
|
abort();
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
@ -1120,7 +1120,7 @@ emit(slang_gen_context *gc, slang_ir_node *n, struct gl_program *prog)
|
||||||
case IR_COS:
|
case IR_COS:
|
||||||
return emit_unop(gc, n, prog);
|
return emit_unop(gc, n, prog);
|
||||||
case IR_NEG:
|
case IR_NEG:
|
||||||
return emit_negation(gc, n, prog):
|
return emit_negation(gc, n, prog);
|
||||||
case IR_LABEL:
|
case IR_LABEL:
|
||||||
return emit_label(n->Target, prog);
|
return emit_label(n->Target, prog);
|
||||||
case IR_FLOAT:
|
case IR_FLOAT:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue