@@ -26,6 +26,7 @@ astGuards
26
26
| test.c:131:7:131:7 | b |
27
27
| test.c:137:7:137:7 | 0 |
28
28
| test.c:146:7:146:8 | ! ... |
29
+ | test.c:146:8:146:8 | x |
29
30
| test.c:152:10:152:10 | x |
30
31
| test.c:152:10:152:15 | ... && ... |
31
32
| test.c:152:15:152:15 | y |
@@ -266,7 +267,9 @@ astGuardsCompare
266
267
| 146 | ! ... == 0 when ! ... is false |
267
268
| 146 | ! ... == 1 when ! ... is true |
268
269
| 146 | x != 0 when ! ... is false |
270
+ | 146 | x != 0 when x is true |
269
271
| 146 | x == 0 when ! ... is true |
272
+ | 146 | x == 0 when x is false |
270
273
| 152 | x != 0 when ... && ... is true |
271
274
| 152 | x != 0 when x is true |
272
275
| 152 | x != 1 when x is false |
@@ -422,6 +425,7 @@ astGuardsControl
422
425
| test.c:131:7:131:7 | b | true | 131 | 132 |
423
426
| test.c:137:7:137:7 | 0 | false | 142 | 136 |
424
427
| test.c:146:7:146:8 | ! ... | true | 146 | 147 |
428
+ | test.c:146:8:146:8 | x | false | 146 | 147 |
425
429
| test.c:152:10:152:10 | x | true | 151 | 152 |
426
430
| test.c:152:10:152:10 | x | true | 152 | 152 |
427
431
| test.c:152:10:152:15 | ... && ... | true | 151 | 152 |
@@ -837,6 +841,7 @@ astGuardsEnsure_const
837
841
| test.c:146:7:146:8 | ! ... | test.c:146:7:146:8 | ! ... | != | 0 | 146 | 147 |
838
842
| test.c:146:7:146:8 | ! ... | test.c:146:7:146:8 | ! ... | == | 1 | 146 | 147 |
839
843
| test.c:146:7:146:8 | ! ... | test.c:146:8:146:8 | x | == | 0 | 146 | 147 |
844
+ | test.c:146:8:146:8 | x | test.c:146:8:146:8 | x | == | 0 | 146 | 147 |
840
845
| test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | != | 0 | 151 | 152 |
841
846
| test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | != | 0 | 152 | 152 |
842
847
| test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | == | 1 | 151 | 152 |
0 commit comments