nir/spirv: Handle OpNoLine
authorJason Ekstrand <jason.ekstrand@intel.com>
Mon, 11 Jan 2016 20:14:45 +0000 (12:14 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Mon, 11 Jan 2016 22:30:46 +0000 (14:30 -0800)
src/glsl/nir/spirv/spirv_to_nir.c

index 44d03652e982affd14135b06ca900240d640a183..9000e895dd431b85e50c07f490cc52caebe7282d 100644 (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: