mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 01:40:08 +01: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;
|
||||
|
||||
return inst;
|
||||
#endif
|
||||
#else
|
||||
/* XXX this is something we can optimize for, with a bit of work.*/
|
||||
abort();
|
||||
return NULL;
|
||||
|
|
@ -1120,7 +1120,7 @@ emit(slang_gen_context *gc, slang_ir_node *n, struct gl_program *prog)
|
|||
case IR_COS:
|
||||
return emit_unop(gc, n, prog);
|
||||
case IR_NEG:
|
||||
return emit_negation(gc, n, prog):
|
||||
return emit_negation(gc, n, prog);
|
||||
case IR_LABEL:
|
||||
return emit_label(n->Target, prog);
|
||||
case IR_FLOAT:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue