@@ -74,7 +74,6 @@ astGuardsCompare
74
74
| 18 | call to get != 0 when call to get is true |
75
75
| 18 | call to get != 1 when call to get is false |
76
76
| 18 | call to get == 0 when call to get is false |
77
- | 18 | call to get == 1 when call to get is true |
78
77
| 26 | 0 < x+0 when ... > ... is true |
79
78
| 26 | 0 >= x+0 when ... > ... is false |
80
79
| 26 | ... > ... != 0 when ... > ... is true |
@@ -245,22 +244,16 @@ astGuardsCompare
245
244
| 126 | 1 != 0 when ... && ... is true |
246
245
| 126 | 1 != 1 when 1 is false |
247
246
| 126 | 1 == 0 when 1 is false |
248
- | 126 | 1 == 1 when 1 is true |
249
- | 126 | 1 == 1 when ... && ... is true |
250
247
| 126 | call to test3_condition != 0 when ... && ... is true |
251
248
| 126 | call to test3_condition != 0 when call to test3_condition is true |
252
249
| 126 | call to test3_condition != 1 when call to test3_condition is false |
253
250
| 126 | call to test3_condition == 0 when call to test3_condition is false |
254
- | 126 | call to test3_condition == 1 when ... && ... is true |
255
- | 126 | call to test3_condition == 1 when call to test3_condition is true |
256
251
| 131 | b != 0 when b is true |
257
252
| 131 | b != 1 when b is false |
258
253
| 131 | b == 0 when b is false |
259
- | 131 | b == 1 when b is true |
260
254
| 137 | 0 != 0 when 0 is true |
261
255
| 137 | 0 != 1 when 0 is false |
262
256
| 137 | 0 == 0 when 0 is false |
263
- | 137 | 0 == 1 when 0 is true |
264
257
| 146 | ! ... != 0 when ! ... is true |
265
258
| 146 | ! ... != 1 when ! ... is false |
266
259
| 146 | ! ... == 0 when ! ... is false |
@@ -271,14 +264,10 @@ astGuardsCompare
271
264
| 152 | x != 0 when x is true |
272
265
| 152 | x != 1 when x is false |
273
266
| 152 | x == 0 when x is false |
274
- | 152 | x == 1 when ... && ... is true |
275
- | 152 | x == 1 when x is true |
276
267
| 152 | y != 0 when ... && ... is true |
277
268
| 152 | y != 0 when y is true |
278
269
| 152 | y != 1 when y is false |
279
270
| 152 | y == 0 when y is false |
280
- | 152 | y == 1 when ... && ... is true |
281
- | 152 | y == 1 when y is true |
282
271
| 156 | ... + ... != x+0 when ... == ... is false |
283
272
| 156 | ... + ... == x+0 when ... == ... is true |
284
273
| 156 | ... == ... != 0 when ... == ... is true |
@@ -340,7 +329,6 @@ astGuardsCompare
340
329
| 181 | x != 0 when x is true |
341
330
| 181 | x != 1 when x is false |
342
331
| 181 | x == 0 when x is false |
343
- | 181 | x == 1 when x is true |
344
332
astGuardsControl
345
333
| test.c:7:9:7:13 | ... > ... | false | 10 | 11 |
346
334
| test.c:7:9:7:13 | ... > ... | true | 7 | 9 |
@@ -819,34 +807,20 @@ astGuardsEnsure_const
819
807
| test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | != | 0 | 131 | 131 |
820
808
| test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | != | 0 | 131 | 132 |
821
809
| test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | != | 0 | 134 | 123 |
822
- | test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | == | 1 | 126 | 126 |
823
- | test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | == | 1 | 126 | 128 |
824
- | test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | == | 1 | 131 | 131 |
825
- | test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | == | 1 | 131 | 132 |
826
- | test.c:126:7:126:7 | 1 | test.c:126:7:126:7 | 1 | == | 1 | 134 | 123 |
827
810
| test.c:126:7:126:28 | ... && ... | test.c:126:7:126:7 | 1 | != | 0 | 126 | 128 |
828
- | test.c:126:7:126:28 | ... && ... | test.c:126:7:126:7 | 1 | == | 1 | 126 | 128 |
829
811
| test.c:126:7:126:28 | ... && ... | test.c:126:12:126:26 | call to test3_condition | != | 0 | 126 | 128 |
830
- | test.c:126:7:126:28 | ... && ... | test.c:126:12:126:26 | call to test3_condition | == | 1 | 126 | 128 |
831
812
| test.c:126:12:126:26 | call to test3_condition | test.c:126:12:126:26 | call to test3_condition | != | 0 | 126 | 128 |
832
- | test.c:126:12:126:26 | call to test3_condition | test.c:126:12:126:26 | call to test3_condition | == | 1 | 126 | 128 |
833
813
| test.c:131:7:131:7 | b | test.c:131:7:131:7 | b | != | 0 | 131 | 132 |
834
- | test.c:131:7:131:7 | b | test.c:131:7:131:7 | b | == | 1 | 131 | 132 |
835
814
| test.c:137:7:137:7 | 0 | test.c:137:7:137:7 | 0 | != | 1 | 142 | 136 |
836
815
| test.c:137:7:137:7 | 0 | test.c:137:7:137:7 | 0 | == | 0 | 142 | 136 |
837
816
| test.c:146:7:146:8 | ! ... | test.c:146:7:146:8 | ! ... | != | 0 | 146 | 147 |
838
817
| test.c:146:7:146:8 | ! ... | test.c:146:7:146:8 | ! ... | == | 1 | 146 | 147 |
839
818
| test.c:146:7:146:8 | ! ... | test.c:146:8:146:8 | x | == | 0 | 146 | 147 |
840
819
| test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | != | 0 | 151 | 152 |
841
820
| test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | != | 0 | 152 | 152 |
842
- | test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | == | 1 | 151 | 152 |
843
- | test.c:152:10:152:10 | x | test.c:152:10:152:10 | x | == | 1 | 152 | 152 |
844
821
| test.c:152:10:152:15 | ... && ... | test.c:152:10:152:10 | x | != | 0 | 151 | 152 |
845
- | test.c:152:10:152:15 | ... && ... | test.c:152:10:152:10 | x | == | 1 | 151 | 152 |
846
822
| test.c:152:10:152:15 | ... && ... | test.c:152:15:152:15 | y | != | 0 | 151 | 152 |
847
- | test.c:152:10:152:15 | ... && ... | test.c:152:15:152:15 | y | == | 1 | 151 | 152 |
848
823
| test.c:152:15:152:15 | y | test.c:152:15:152:15 | y | != | 0 | 151 | 152 |
849
- | test.c:152:15:152:15 | y | test.c:152:15:152:15 | y | == | 1 | 151 | 152 |
850
824
| test.c:156:9:156:19 | ... == ... | test.c:156:9:156:19 | ... == ... | != | 0 | 156 | 157 |
851
825
| test.c:156:9:156:19 | ... == ... | test.c:156:9:156:19 | ... == ... | == | 1 | 156 | 157 |
852
826
| test.c:159:9:159:19 | ... == ... | test.c:159:9:159:19 | ... == ... | != | 0 | 159 | 160 |
@@ -865,10 +839,7 @@ astGuardsEnsure_const
865
839
| test.c:181:9:181:9 | x | test.c:181:9:181:9 | x | != | 0 | 186 | 180 |
866
840
| test.c:181:9:181:9 | x | test.c:181:9:181:9 | x | != | 1 | 183 | 184 |
867
841
| test.c:181:9:181:9 | x | test.c:181:9:181:9 | x | == | 0 | 183 | 184 |
868
- | test.c:181:9:181:9 | x | test.c:181:9:181:9 | x | == | 1 | 181 | 182 |
869
- | test.c:181:9:181:9 | x | test.c:181:9:181:9 | x | == | 1 | 186 | 180 |
870
842
| test.cpp:18:8:18:10 | call to get | test.cpp:18:8:18:10 | call to get | != | 0 | 19 | 19 |
871
- | test.cpp:18:8:18:10 | call to get | test.cpp:18:8:18:10 | call to get | == | 1 | 19 | 19 |
872
843
| test.cpp:31:7:31:13 | ... == ... | test.cpp:31:7:31:7 | x | != | -1 | 30 | 30 |
873
844
| test.cpp:31:7:31:13 | ... == ... | test.cpp:31:7:31:7 | x | != | -1 | 34 | 34 |
874
845
| test.cpp:31:7:31:13 | ... == ... | test.cpp:31:7:31:7 | x | == | -1 | 30 | 30 |
0 commit comments