Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build warning coming from Vulkan grammar
Browse files Browse the repository at this point in the history
Signed-off-by: Hernan Ponce de Leon <hernanl.leon@huawei.com>
hernan-poncedeleon committed Nov 9, 2023
1 parent 71b8638 commit ed7aedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dartagnan/src/main/antlr4/LitmusVulkan.g4
Original file line number Diff line number Diff line change
@@ -256,7 +256,7 @@ avvisSemanticList
operation locals [IOpBin op]
: Period Add {$op = IOpBin.ADD;}
| Period Sub {$op = IOpBin.SUB;}
| Period Mult {$op = IOpBin.MUL;}
| Period Mul {$op = IOpBin.MUL;}
| Period Div {$op = IOpBin.DIV;}
| Period And {$op = IOpBin.AND;}
| Period Or {$op = IOpBin.OR;}
@@ -331,7 +331,7 @@ Bge : 'bge';

Add : 'add';
Sub : 'sub';
Mult : 'mul';
Mul : 'mul';
Div : 'div';
And : 'and';
Or : 'or';

0 comments on commit ed7aedc

Please sign in to comment.