mesa: make the arguments in the asm statemants optional
[mesa.git] / src / glsl / cl / sl_cl_parse.c
index 65df6c38ae7c2017d3c2c114c4aabecd6bf8154b..09456f5219ae0e32edf1b6cdd32576637b657e51 100644 (file)
@@ -2191,9 +2191,8 @@ _parse_asm_statement(struct parse_context *ctx,
    if (_parse_identifier(ctx, &p)) {
       return -1;
    }
-   if (_parse_asm_arguments(ctx, &p)) {
-      return -1;
-   }
+   /* optional arguments */
+   _parse_asm_arguments(ctx, &p);
    if (_parse_token(ctx, SL_PP_SEMICOLON, &p)) {
       return -1;
    }