nir/spirv: Handle OpNoLine

This commit is contained in:
Jason Ekstrand 2016-01-11 12:14:45 -08:00
parent 52d4af6a3c
commit 17cfafd83a
1 changed files with 2 additions and 0 deletions

View File

@ -3190,6 +3190,7 @@ vtn_handle_variable_or_type_instruction(struct vtn_builder *b, SpvOp opcode,
break;
case SpvOpLine:
case SpvOpNoLine:
break; /* Ignored for now */
case SpvOpTypeVoid:
@ -3244,6 +3245,7 @@ vtn_handle_body_instruction(struct vtn_builder *b, SpvOp opcode,
{
switch (opcode) {
case SpvOpLine:
case SpvOpNoLine:
break; /* Ignored for now */
case SpvOpLabel: