-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturnt.out
2726 lines (2726 loc) · 134 KB
/
turnt.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1..274
ok 1 - ./benchmarks/core/ackermann.bril natural-loop
ok 2 - ./benchmarks/core/ackermann.bril labeled
ok 3 - ./benchmarks/core/ackermann.bril licm
ok 4 - ./benchmarks/core/ackermann.bril licm-roundtrip
ok 5 - ./benchmarks/core/ackermann.bril original-eval
ok 6 - ./benchmarks/core/ackermann.bril ssa-eval
ok 7 - ./benchmarks/core/ackermann.bril licm-eval
ok 8 - ./benchmarks/core/ackermann.bril licm-roundtrip-eval
ok 9 - ./benchmarks/core/armstrong.bril natural-loop
ok 10 - ./benchmarks/core/armstrong.bril labeled
ok 11 - ./benchmarks/core/armstrong.bril licm
ok 12 - ./benchmarks/core/armstrong.bril licm-roundtrip
ok 13 - ./benchmarks/core/armstrong.bril original-eval
ok 14 - ./benchmarks/core/armstrong.bril ssa-eval
ok 15 - ./benchmarks/core/armstrong.bril licm-eval
ok 16 - ./benchmarks/core/armstrong.bril licm-roundtrip-eval
ok 17 - ./benchmarks/core/binary-fmt.bril natural-loop
ok 18 - ./benchmarks/core/binary-fmt.bril labeled
ok 19 - ./benchmarks/core/binary-fmt.bril licm
ok 20 - ./benchmarks/core/binary-fmt.bril licm-roundtrip
ok 21 - ./benchmarks/core/binary-fmt.bril original-eval
ok 22 - ./benchmarks/core/binary-fmt.bril ssa-eval
ok 23 - ./benchmarks/core/binary-fmt.bril licm-eval
ok 24 - ./benchmarks/core/binary-fmt.bril licm-roundtrip-eval
ok 25 - ./benchmarks/core/bitshift.bril natural-loop
ok 26 - ./benchmarks/core/bitshift.bril labeled
ok 27 - ./benchmarks/core/bitshift.bril licm
ok 28 - ./benchmarks/core/bitshift.bril licm-roundtrip
ok 29 - ./benchmarks/core/bitshift.bril original-eval
ok 30 - ./benchmarks/core/bitshift.bril ssa-eval
ok 31 - ./benchmarks/core/bitshift.bril licm-eval
ok 32 - ./benchmarks/core/bitshift.bril licm-roundtrip-eval
ok 33 - ./benchmarks/core/bitwise-ops.bril natural-loop
ok 34 - ./benchmarks/core/bitwise-ops.bril labeled
ok 35 - ./benchmarks/core/bitwise-ops.bril licm
ok 36 - ./benchmarks/core/bitwise-ops.bril licm-roundtrip
ok 37 - ./benchmarks/core/bitwise-ops.bril original-eval
ok 38 - ./benchmarks/core/bitwise-ops.bril ssa-eval
ok 39 - ./benchmarks/core/bitwise-ops.bril licm-eval
ok 40 - ./benchmarks/core/bitwise-ops.bril licm-roundtrip-eval
ok 41 - ./benchmarks/core/catalan.bril natural-loop
ok 42 - ./benchmarks/core/catalan.bril labeled
ok 43 - ./benchmarks/core/catalan.bril licm
ok 44 - ./benchmarks/core/catalan.bril licm-roundtrip
ok 45 - ./benchmarks/core/catalan.bril original-eval
ok 46 - ./benchmarks/core/catalan.bril ssa-eval
ok 47 - ./benchmarks/core/catalan.bril licm-eval
ok 48 - ./benchmarks/core/catalan.bril licm-roundtrip-eval
ok 49 - ./benchmarks/core/check-primes.bril natural-loop
ok 50 - ./benchmarks/core/check-primes.bril labeled
ok 51 - ./benchmarks/core/check-primes.bril licm
ok 52 - ./benchmarks/core/check-primes.bril licm-roundtrip
ok 53 - ./benchmarks/core/check-primes.bril original-eval
ok 54 - ./benchmarks/core/check-primes.bril ssa-eval
ok 55 - ./benchmarks/core/check-primes.bril licm-eval
ok 56 - ./benchmarks/core/check-primes.bril licm-roundtrip-eval
ok 57 - ./benchmarks/core/collatz.bril natural-loop
ok 58 - ./benchmarks/core/collatz.bril labeled
ok 59 - ./benchmarks/core/collatz.bril licm
ok 60 - ./benchmarks/core/collatz.bril licm-roundtrip
ok 61 - ./benchmarks/core/collatz.bril original-eval
ok 62 - ./benchmarks/core/collatz.bril ssa-eval
ok 63 - ./benchmarks/core/collatz.bril licm-eval
ok 64 - ./benchmarks/core/collatz.bril licm-roundtrip-eval
ok 65 - ./benchmarks/core/digital-root.bril natural-loop
ok 66 - ./benchmarks/core/digital-root.bril labeled
ok 67 - ./benchmarks/core/digital-root.bril licm
ok 68 - ./benchmarks/core/digital-root.bril licm-roundtrip
ok 69 - ./benchmarks/core/digital-root.bril original-eval
ok 70 - ./benchmarks/core/digital-root.bril ssa-eval
ok 71 - ./benchmarks/core/digital-root.bril licm-eval
ok 72 - ./benchmarks/core/digital-root.bril licm-roundtrip-eval
ok 73 - ./benchmarks/core/dot-product.bril natural-loop
ok 74 - ./benchmarks/core/dot-product.bril labeled
ok 75 - ./benchmarks/core/dot-product.bril licm
ok 76 - ./benchmarks/core/dot-product.bril licm-roundtrip
ok 77 - ./benchmarks/core/dot-product.bril original-eval
ok 78 - ./benchmarks/core/dot-product.bril ssa-eval
ok 79 - ./benchmarks/core/dot-product.bril licm-eval
ok 80 - ./benchmarks/core/dot-product.bril licm-roundtrip-eval
ok 81 - ./benchmarks/core/euclid.bril natural-loop
ok 82 - ./benchmarks/core/euclid.bril labeled
ok 83 - ./benchmarks/core/euclid.bril licm
ok 84 - ./benchmarks/core/euclid.bril licm-roundtrip
ok 85 - ./benchmarks/core/euclid.bril original-eval
ok 86 - ./benchmarks/core/euclid.bril ssa-eval
ok 87 - ./benchmarks/core/euclid.bril licm-eval
ok 88 - ./benchmarks/core/euclid.bril licm-roundtrip-eval
ok 89 - ./benchmarks/core/fact.bril natural-loop
ok 90 - ./benchmarks/core/fact.bril labeled
ok 91 - ./benchmarks/core/fact.bril licm
ok 92 - ./benchmarks/core/fact.bril licm-roundtrip
ok 93 - ./benchmarks/core/fact.bril original-eval
ok 94 - ./benchmarks/core/fact.bril ssa-eval
ok 95 - ./benchmarks/core/fact.bril licm-eval
ok 96 - ./benchmarks/core/fact.bril licm-roundtrip-eval
ok 97 - ./benchmarks/core/factors.bril natural-loop
ok 98 - ./benchmarks/core/factors.bril labeled
ok 99 - ./benchmarks/core/factors.bril licm
ok 100 - ./benchmarks/core/factors.bril licm-roundtrip
ok 101 - ./benchmarks/core/factors.bril original-eval
ok 102 - ./benchmarks/core/factors.bril ssa-eval
ok 103 - ./benchmarks/core/factors.bril licm-eval
ok 104 - ./benchmarks/core/factors.bril licm-roundtrip-eval
ok 105 - ./benchmarks/core/fizz-buzz.bril natural-loop
ok 106 - ./benchmarks/core/fizz-buzz.bril labeled
ok 107 - ./benchmarks/core/fizz-buzz.bril licm
ok 108 - ./benchmarks/core/fizz-buzz.bril licm-roundtrip
ok 109 - ./benchmarks/core/fizz-buzz.bril original-eval
ok 110 - ./benchmarks/core/fizz-buzz.bril ssa-eval
ok 111 - ./benchmarks/core/fizz-buzz.bril licm-eval
ok 112 - ./benchmarks/core/fizz-buzz.bril licm-roundtrip-eval
ok 113 - ./benchmarks/core/gcd.bril natural-loop
ok 114 - ./benchmarks/core/gcd.bril labeled
ok 115 - ./benchmarks/core/gcd.bril licm
ok 116 - ./benchmarks/core/gcd.bril licm-roundtrip
ok 117 - ./benchmarks/core/gcd.bril original-eval
ok 118 - ./benchmarks/core/gcd.bril ssa-eval
ok 119 - ./benchmarks/core/gcd.bril licm-eval
ok 120 - ./benchmarks/core/gcd.bril licm-roundtrip-eval
ok 121 - ./benchmarks/core/hanoi.bril natural-loop
ok 122 - ./benchmarks/core/hanoi.bril labeled
ok 123 - ./benchmarks/core/hanoi.bril licm
ok 124 - ./benchmarks/core/hanoi.bril licm-roundtrip
ok 125 - ./benchmarks/core/hanoi.bril original-eval
ok 126 - ./benchmarks/core/hanoi.bril ssa-eval
ok 127 - ./benchmarks/core/hanoi.bril licm-eval
ok 128 - ./benchmarks/core/hanoi.bril licm-roundtrip-eval
ok 129 - ./benchmarks/core/loopfact.bril natural-loop
ok 130 - ./benchmarks/core/loopfact.bril labeled
ok 131 - ./benchmarks/core/loopfact.bril licm
ok 132 - ./benchmarks/core/loopfact.bril licm-roundtrip
ok 133 - ./benchmarks/core/loopfact.bril original-eval
ok 134 - ./benchmarks/core/loopfact.bril ssa-eval
ok 135 - ./benchmarks/core/loopfact.bril licm-eval
ok 136 - ./benchmarks/core/loopfact.bril licm-roundtrip-eval
ok 137 - ./benchmarks/core/mod_inv.bril natural-loop
ok 138 - ./benchmarks/core/mod_inv.bril labeled
ok 139 - ./benchmarks/core/mod_inv.bril licm
ok 140 - ./benchmarks/core/mod_inv.bril licm-roundtrip
ok 141 - ./benchmarks/core/mod_inv.bril original-eval
ok 142 - ./benchmarks/core/mod_inv.bril ssa-eval
ok 143 - ./benchmarks/core/mod_inv.bril licm-eval
ok 144 - ./benchmarks/core/mod_inv.bril licm-roundtrip-eval
ok 145 - ./benchmarks/core/orders.bril natural-loop
ok 146 - ./benchmarks/core/orders.bril labeled
ok 147 - ./benchmarks/core/orders.bril licm
ok 148 - ./benchmarks/core/orders.bril licm-roundtrip
ok 149 - ./benchmarks/core/orders.bril original-eval
ok 150 - ./benchmarks/core/orders.bril ssa-eval
ok 151 - ./benchmarks/core/orders.bril licm-eval
ok 152 - ./benchmarks/core/orders.bril licm-roundtrip-eval
ok 153 - ./benchmarks/core/palindrome.bril natural-loop
ok 154 - ./benchmarks/core/palindrome.bril labeled
ok 155 - ./benchmarks/core/palindrome.bril licm
ok 156 - ./benchmarks/core/palindrome.bril licm-roundtrip
ok 157 - ./benchmarks/core/palindrome.bril original-eval
ok 158 - ./benchmarks/core/palindrome.bril ssa-eval
ok 159 - ./benchmarks/core/palindrome.bril licm-eval
ok 160 - ./benchmarks/core/palindrome.bril licm-roundtrip-eval
ok 161 - ./benchmarks/core/pascals-row.bril natural-loop
ok 162 - ./benchmarks/core/pascals-row.bril labeled
ok 163 - ./benchmarks/core/pascals-row.bril licm
ok 164 - ./benchmarks/core/pascals-row.bril licm-roundtrip
ok 165 - ./benchmarks/core/pascals-row.bril original-eval
ok 166 - ./benchmarks/core/pascals-row.bril ssa-eval
ok 167 - ./benchmarks/core/pascals-row.bril licm-eval
ok 168 - ./benchmarks/core/pascals-row.bril licm-roundtrip-eval
ok 169 - ./benchmarks/core/perfect.bril natural-loop
ok 170 - ./benchmarks/core/perfect.bril labeled
ok 171 - ./benchmarks/core/perfect.bril licm
ok 172 - ./benchmarks/core/perfect.bril licm-roundtrip
ok 173 - ./benchmarks/core/perfect.bril original-eval
ok 174 - ./benchmarks/core/perfect.bril ssa-eval
ok 175 - ./benchmarks/core/perfect.bril licm-eval
ok 176 - ./benchmarks/core/perfect.bril licm-roundtrip-eval
ok 177 - ./benchmarks/core/primes-between.bril natural-loop
ok 178 - ./benchmarks/core/primes-between.bril labeled
ok 179 - ./benchmarks/core/primes-between.bril licm
ok 180 - ./benchmarks/core/primes-between.bril licm-roundtrip
ok 181 - ./benchmarks/core/primes-between.bril original-eval
ok 182 - ./benchmarks/core/primes-between.bril ssa-eval
ok 183 - ./benchmarks/core/primes-between.bril licm-eval
ok 184 - ./benchmarks/core/primes-between.bril licm-roundtrip-eval
ok 185 - ./benchmarks/core/pythagorean_triple.bril natural-loop
ok 186 - ./benchmarks/core/pythagorean_triple.bril labeled
ok 187 - ./benchmarks/core/pythagorean_triple.bril licm
ok 188 - ./benchmarks/core/pythagorean_triple.bril licm-roundtrip
ok 189 - ./benchmarks/core/pythagorean_triple.bril original-eval
ok 190 - ./benchmarks/core/pythagorean_triple.bril ssa-eval
ok 191 - ./benchmarks/core/pythagorean_triple.bril licm-eval
ok 192 - ./benchmarks/core/pythagorean_triple.bril licm-roundtrip-eval
ok 193 - ./benchmarks/core/quadratic.bril natural-loop
ok 194 - ./benchmarks/core/quadratic.bril labeled
ok 195 - ./benchmarks/core/quadratic.bril licm
ok 196 - ./benchmarks/core/quadratic.bril licm-roundtrip
ok 197 - ./benchmarks/core/quadratic.bril original-eval
ok 198 - ./benchmarks/core/quadratic.bril ssa-eval
ok 199 - ./benchmarks/core/quadratic.bril licm-eval
ok 200 - ./benchmarks/core/quadratic.bril licm-roundtrip-eval
ok 201 - ./benchmarks/core/recfact.bril natural-loop
ok 202 - ./benchmarks/core/recfact.bril labeled
ok 203 - ./benchmarks/core/recfact.bril licm
ok 204 - ./benchmarks/core/recfact.bril licm-roundtrip
ok 205 - ./benchmarks/core/recfact.bril original-eval
ok 206 - ./benchmarks/core/recfact.bril ssa-eval
ok 207 - ./benchmarks/core/recfact.bril licm-eval
ok 208 - ./benchmarks/core/recfact.bril licm-roundtrip-eval
ok 209 - ./benchmarks/core/rectangles-area-difference.bril natural-loop
ok 210 - ./benchmarks/core/rectangles-area-difference.bril labeled
ok 211 - ./benchmarks/core/rectangles-area-difference.bril licm
ok 212 - ./benchmarks/core/rectangles-area-difference.bril licm-roundtrip
ok 213 - ./benchmarks/core/rectangles-area-difference.bril original-eval
ok 214 - ./benchmarks/core/rectangles-area-difference.bril ssa-eval
ok 215 - ./benchmarks/core/rectangles-area-difference.bril licm-eval
ok 216 - ./benchmarks/core/rectangles-area-difference.bril licm-roundtrip-eval
ok 217 - ./benchmarks/core/relative-primes.bril natural-loop
ok 218 - ./benchmarks/core/relative-primes.bril labeled
ok 219 - ./benchmarks/core/relative-primes.bril licm
ok 220 - ./benchmarks/core/relative-primes.bril licm-roundtrip
ok 221 - ./benchmarks/core/relative-primes.bril original-eval
ok 222 - ./benchmarks/core/relative-primes.bril ssa-eval
ok 223 - ./benchmarks/core/relative-primes.bril licm-eval
ok 224 - ./benchmarks/core/relative-primes.bril licm-roundtrip-eval
ok 225 - ./benchmarks/core/reverse.bril natural-loop
ok 226 - ./benchmarks/core/reverse.bril labeled
ok 227 - ./benchmarks/core/reverse.bril licm
ok 228 - ./benchmarks/core/reverse.bril licm-roundtrip
ok 229 - ./benchmarks/core/reverse.bril original-eval
ok 230 - ./benchmarks/core/reverse.bril ssa-eval
ok 231 - ./benchmarks/core/reverse.bril licm-eval
ok 232 - ./benchmarks/core/reverse.bril licm-roundtrip-eval
ok 233 - ./benchmarks/core/sum-bits.bril natural-loop
ok 234 - ./benchmarks/core/sum-bits.bril labeled
ok 235 - ./benchmarks/core/sum-bits.bril licm
ok 236 - ./benchmarks/core/sum-bits.bril licm-roundtrip
ok 237 - ./benchmarks/core/sum-bits.bril original-eval
ok 238 - ./benchmarks/core/sum-bits.bril ssa-eval
ok 239 - ./benchmarks/core/sum-bits.bril licm-eval
ok 240 - ./benchmarks/core/sum-bits.bril licm-roundtrip-eval
ok 241 - ./benchmarks/core/sum-divisors.bril natural-loop
ok 242 - ./benchmarks/core/sum-divisors.bril labeled
ok 243 - ./benchmarks/core/sum-divisors.bril licm
ok 244 - ./benchmarks/core/sum-divisors.bril licm-roundtrip
ok 245 - ./benchmarks/core/sum-divisors.bril original-eval
ok 246 - ./benchmarks/core/sum-divisors.bril ssa-eval
ok 247 - ./benchmarks/core/sum-divisors.bril licm-eval
ok 248 - ./benchmarks/core/sum-divisors.bril licm-roundtrip-eval
ok 249 - ./benchmarks/core/sum-sq-diff.bril natural-loop
ok 250 - ./benchmarks/core/sum-sq-diff.bril labeled
ok 251 - ./benchmarks/core/sum-sq-diff.bril licm
ok 252 - ./benchmarks/core/sum-sq-diff.bril licm-roundtrip
ok 253 - ./benchmarks/core/sum-sq-diff.bril original-eval
ok 254 - ./benchmarks/core/sum-sq-diff.bril ssa-eval
ok 255 - ./benchmarks/core/sum-sq-diff.bril licm-eval
ok 256 - ./benchmarks/core/sum-sq-diff.bril licm-roundtrip-eval
ok 257 - ./benchmarks/core/totient.bril natural-loop
ok 258 - ./benchmarks/core/totient.bril labeled
ok 259 - ./benchmarks/core/totient.bril licm
ok 260 - ./benchmarks/core/totient.bril licm-roundtrip
ok 261 - ./benchmarks/core/totient.bril original-eval
ok 262 - ./benchmarks/core/totient.bril ssa-eval
ok 263 - ./benchmarks/core/totient.bril licm-eval
ok 264 - ./benchmarks/core/totient.bril licm-roundtrip-eval
ok 265 - ./benchmarks/core/up-arrow.bril natural-loop
ok 266 - ./benchmarks/core/up-arrow.bril labeled
ok 267 - ./benchmarks/core/up-arrow.bril licm
ok 268 - ./benchmarks/core/up-arrow.bril licm-roundtrip
ok 269 - ./benchmarks/core/up-arrow.bril original-eval
ok 270 - ./benchmarks/core/up-arrow.bril ssa-eval
ok 271 - ./benchmarks/core/up-arrow.bril licm-eval
ok 272 - ./benchmarks/core/up-arrow.bril licm-roundtrip-eval
ok 273 - ./benchmarks/float/conjugate-gradient.bril natural-loop
ok 274 - ./benchmarks/float/conjugate-gradient.bril labeled
ok 275 - ./benchmarks/float/conjugate-gradient.bril licm
ok 276 - ./benchmarks/float/conjugate-gradient.bril licm-roundtrip
ok 277 - ./benchmarks/float/conjugate-gradient.bril original-eval
ok 278 - ./benchmarks/float/conjugate-gradient.bril ssa-eval
ok 279 - ./benchmarks/float/conjugate-gradient.bril licm-eval
ok 280 - ./benchmarks/float/conjugate-gradient.bril licm-roundtrip-eval
ok 281 - ./benchmarks/float/cordic.bril natural-loop
ok 282 - ./benchmarks/float/cordic.bril labeled
ok 283 - ./benchmarks/float/cordic.bril licm
ok 284 - ./benchmarks/float/cordic.bril licm-roundtrip
ok 285 - ./benchmarks/float/cordic.bril original-eval
ok 286 - ./benchmarks/float/cordic.bril ssa-eval
ok 287 - ./benchmarks/float/cordic.bril licm-eval
ok 288 - ./benchmarks/float/cordic.bril licm-roundtrip-eval
ok 289 - ./benchmarks/float/euler.bril natural-loop
ok 290 - ./benchmarks/float/euler.bril labeled
ok 291 - ./benchmarks/float/euler.bril licm
ok 292 - ./benchmarks/float/euler.bril licm-roundtrip
ok 293 - ./benchmarks/float/euler.bril original-eval
ok 294 - ./benchmarks/float/euler.bril ssa-eval
ok 295 - ./benchmarks/float/euler.bril licm-eval
ok 296 - ./benchmarks/float/euler.bril licm-roundtrip-eval
ok 297 - ./benchmarks/float/mandelbrot.bril natural-loop
ok 298 - ./benchmarks/float/mandelbrot.bril labeled
ok 299 - ./benchmarks/float/mandelbrot.bril licm
ok 300 - ./benchmarks/float/mandelbrot.bril licm-roundtrip
ok 301 - ./benchmarks/float/mandelbrot.bril original-eval
ok 302 - ./benchmarks/float/mandelbrot.bril ssa-eval
ok 303 - ./benchmarks/float/mandelbrot.bril licm-eval
ok 304 - ./benchmarks/float/mandelbrot.bril licm-roundtrip-eval
ok 305 - ./benchmarks/float/newton.bril natural-loop
ok 306 - ./benchmarks/float/newton.bril labeled
ok 307 - ./benchmarks/float/newton.bril licm
ok 308 - ./benchmarks/float/newton.bril licm-roundtrip
ok 309 - ./benchmarks/float/newton.bril original-eval
ok 310 - ./benchmarks/float/newton.bril ssa-eval
ok 311 - ./benchmarks/float/newton.bril licm-eval
ok 312 - ./benchmarks/float/newton.bril licm-roundtrip-eval
ok 313 - ./benchmarks/float/norm.bril natural-loop
ok 314 - ./benchmarks/float/norm.bril labeled
ok 315 - ./benchmarks/float/norm.bril licm
ok 316 - ./benchmarks/float/norm.bril licm-roundtrip
ok 317 - ./benchmarks/float/norm.bril original-eval
ok 318 - ./benchmarks/float/norm.bril ssa-eval
ok 319 - ./benchmarks/float/norm.bril licm-eval
ok 320 - ./benchmarks/float/norm.bril licm-roundtrip-eval
ok 321 - ./benchmarks/float/n_root.bril natural-loop
ok 322 - ./benchmarks/float/n_root.bril labeled
ok 323 - ./benchmarks/float/n_root.bril licm
ok 324 - ./benchmarks/float/n_root.bril licm-roundtrip
ok 325 - ./benchmarks/float/n_root.bril original-eval
ok 326 - ./benchmarks/float/n_root.bril ssa-eval
ok 327 - ./benchmarks/float/n_root.bril licm-eval
ok 328 - ./benchmarks/float/n_root.bril licm-roundtrip-eval
ok 329 - ./benchmarks/float/pow.bril natural-loop
ok 330 - ./benchmarks/float/pow.bril labeled
ok 331 - ./benchmarks/float/pow.bril licm
ok 332 - ./benchmarks/float/pow.bril licm-roundtrip
ok 333 - ./benchmarks/float/pow.bril original-eval
ok 334 - ./benchmarks/float/pow.bril ssa-eval
ok 335 - ./benchmarks/float/pow.bril licm-eval
ok 336 - ./benchmarks/float/pow.bril licm-roundtrip-eval
ok 337 - ./benchmarks/float/ray-sphere-intersection.bril natural-loop
ok 338 - ./benchmarks/float/ray-sphere-intersection.bril labeled
ok 339 - ./benchmarks/float/ray-sphere-intersection.bril licm
ok 340 - ./benchmarks/float/ray-sphere-intersection.bril licm-roundtrip
ok 341 - ./benchmarks/float/ray-sphere-intersection.bril original-eval
ok 342 - ./benchmarks/float/ray-sphere-intersection.bril ssa-eval
ok 343 - ./benchmarks/float/ray-sphere-intersection.bril licm-eval
ok 344 - ./benchmarks/float/ray-sphere-intersection.bril licm-roundtrip-eval
ok 345 - ./benchmarks/float/riemann.bril natural-loop
ok 346 - ./benchmarks/float/riemann.bril labeled
ok 347 - ./benchmarks/float/riemann.bril licm
ok 348 - ./benchmarks/float/riemann.bril licm-roundtrip
ok 349 - ./benchmarks/float/riemann.bril original-eval
ok 350 - ./benchmarks/float/riemann.bril ssa-eval
ok 351 - ./benchmarks/float/riemann.bril licm-eval
ok 352 - ./benchmarks/float/riemann.bril licm-roundtrip-eval
ok 353 - ./benchmarks/float/sqrt.bril natural-loop
ok 354 - ./benchmarks/float/sqrt.bril labeled
ok 355 - ./benchmarks/float/sqrt.bril licm
ok 356 - ./benchmarks/float/sqrt.bril licm-roundtrip
ok 357 - ./benchmarks/float/sqrt.bril original-eval
ok 358 - ./benchmarks/float/sqrt.bril ssa-eval
ok 359 - ./benchmarks/float/sqrt.bril licm-eval
ok 360 - ./benchmarks/float/sqrt.bril licm-roundtrip-eval
ok 361 - ./benchmarks/long/function_call.bril natural-loop
ok 362 - ./benchmarks/long/function_call.bril labeled
ok 363 - ./benchmarks/long/function_call.bril licm
ok 364 - ./benchmarks/long/function_call.bril licm-roundtrip
ok 365 - ./benchmarks/long/function_call.bril original-eval
ok 366 - ./benchmarks/long/function_call.bril ssa-eval
ok 367 - ./benchmarks/long/function_call.bril licm-eval
ok 368 - ./benchmarks/long/function_call.bril licm-roundtrip-eval
ok 369 - ./benchmarks/mem/adj2csr.bril natural-loop
ok 370 - ./benchmarks/mem/adj2csr.bril labeled
ok 371 - ./benchmarks/mem/adj2csr.bril licm
ok 372 - ./benchmarks/mem/adj2csr.bril licm-roundtrip
ok 373 - ./benchmarks/mem/adj2csr.bril original-eval
ok 374 - ./benchmarks/mem/adj2csr.bril ssa-eval
ok 375 - ./benchmarks/mem/adj2csr.bril licm-eval
ok 376 - ./benchmarks/mem/adj2csr.bril licm-roundtrip-eval
ok 377 - ./benchmarks/mem/adler32.bril natural-loop
ok 378 - ./benchmarks/mem/adler32.bril labeled
ok 379 - ./benchmarks/mem/adler32.bril licm
ok 380 - ./benchmarks/mem/adler32.bril licm-roundtrip
ok 381 - ./benchmarks/mem/adler32.bril original-eval
ok 382 - ./benchmarks/mem/adler32.bril ssa-eval
ok 383 - ./benchmarks/mem/adler32.bril licm-eval
ok 384 - ./benchmarks/mem/adler32.bril licm-roundtrip-eval
ok 385 - ./benchmarks/mem/binary-search.bril natural-loop
ok 386 - ./benchmarks/mem/binary-search.bril labeled
ok 387 - ./benchmarks/mem/binary-search.bril licm
ok 388 - ./benchmarks/mem/binary-search.bril licm-roundtrip
ok 389 - ./benchmarks/mem/binary-search.bril original-eval
ok 390 - ./benchmarks/mem/binary-search.bril ssa-eval
ok 391 - ./benchmarks/mem/binary-search.bril licm-eval
ok 392 - ./benchmarks/mem/binary-search.bril licm-roundtrip-eval
ok 393 - ./benchmarks/mem/bubblesort.bril natural-loop
ok 394 - ./benchmarks/mem/bubblesort.bril labeled
ok 395 - ./benchmarks/mem/bubblesort.bril licm
ok 396 - ./benchmarks/mem/bubblesort.bril licm-roundtrip
ok 397 - ./benchmarks/mem/bubblesort.bril original-eval
ok 398 - ./benchmarks/mem/bubblesort.bril ssa-eval
ok 399 - ./benchmarks/mem/bubblesort.bril licm-eval
ok 400 - ./benchmarks/mem/bubblesort.bril licm-roundtrip-eval
ok 401 - ./benchmarks/mem/eight-queens.bril natural-loop
ok 402 - ./benchmarks/mem/eight-queens.bril labeled
ok 403 - ./benchmarks/mem/eight-queens.bril licm
ok 404 - ./benchmarks/mem/eight-queens.bril licm-roundtrip
ok 405 - ./benchmarks/mem/eight-queens.bril original-eval
ok 406 - ./benchmarks/mem/eight-queens.bril ssa-eval
ok 407 - ./benchmarks/mem/eight-queens.bril licm-eval
ok 408 - ./benchmarks/mem/eight-queens.bril licm-roundtrip-eval
ok 409 - ./benchmarks/mem/fib.bril natural-loop
ok 410 - ./benchmarks/mem/fib.bril labeled
ok 411 - ./benchmarks/mem/fib.bril licm
ok 412 - ./benchmarks/mem/fib.bril licm-roundtrip
ok 413 - ./benchmarks/mem/fib.bril original-eval
ok 414 - ./benchmarks/mem/fib.bril ssa-eval
ok 415 - ./benchmarks/mem/fib.bril licm-eval
ok 416 - ./benchmarks/mem/fib.bril licm-roundtrip-eval
ok 417 - ./benchmarks/mem/mat-mul.bril natural-loop
ok 418 - ./benchmarks/mem/mat-mul.bril labeled
ok 419 - ./benchmarks/mem/mat-mul.bril licm
ok 420 - ./benchmarks/mem/mat-mul.bril licm-roundtrip
ok 421 - ./benchmarks/mem/mat-mul.bril original-eval
ok 422 - ./benchmarks/mem/mat-mul.bril ssa-eval
ok 423 - ./benchmarks/mem/mat-mul.bril licm-eval
ok 424 - ./benchmarks/mem/mat-mul.bril licm-roundtrip-eval
ok 425 - ./benchmarks/mem/max-subarray.bril natural-loop
ok 426 - ./benchmarks/mem/max-subarray.bril labeled
ok 427 - ./benchmarks/mem/max-subarray.bril licm
ok 428 - ./benchmarks/mem/max-subarray.bril licm-roundtrip
ok 429 - ./benchmarks/mem/max-subarray.bril original-eval
ok 430 - ./benchmarks/mem/max-subarray.bril ssa-eval
ok 431 - ./benchmarks/mem/max-subarray.bril licm-eval
ok 432 - ./benchmarks/mem/max-subarray.bril licm-roundtrip-eval
ok 433 - ./benchmarks/mem/primitive-root.bril natural-loop
ok 434 - ./benchmarks/mem/primitive-root.bril labeled
ok 435 - ./benchmarks/mem/primitive-root.bril licm
ok 436 - ./benchmarks/mem/primitive-root.bril licm-roundtrip
ok 437 - ./benchmarks/mem/primitive-root.bril original-eval
ok 438 - ./benchmarks/mem/primitive-root.bril ssa-eval
ok 439 - ./benchmarks/mem/primitive-root.bril licm-eval
ok 440 - ./benchmarks/mem/primitive-root.bril licm-roundtrip-eval
ok 441 - ./benchmarks/mem/quicksort.bril natural-loop
ok 442 - ./benchmarks/mem/quicksort.bril labeled
ok 443 - ./benchmarks/mem/quicksort.bril licm
ok 444 - ./benchmarks/mem/quicksort.bril licm-roundtrip
ok 445 - ./benchmarks/mem/quicksort.bril original-eval
ok 446 - ./benchmarks/mem/quicksort.bril ssa-eval
ok 447 - ./benchmarks/mem/quicksort.bril licm-eval
ok 448 - ./benchmarks/mem/quicksort.bril licm-roundtrip-eval
ok 449 - ./benchmarks/mem/sieve.bril natural-loop
ok 450 - ./benchmarks/mem/sieve.bril labeled
ok 451 - ./benchmarks/mem/sieve.bril licm
ok 452 - ./benchmarks/mem/sieve.bril licm-roundtrip
ok 453 - ./benchmarks/mem/sieve.bril original-eval
ok 454 - ./benchmarks/mem/sieve.bril ssa-eval
ok 455 - ./benchmarks/mem/sieve.bril licm-eval
ok 456 - ./benchmarks/mem/sieve.bril licm-roundtrip-eval
ok 457 - ./benchmarks/mem/two-sum.bril natural-loop
ok 458 - ./benchmarks/mem/two-sum.bril labeled
ok 459 - ./benchmarks/mem/two-sum.bril licm
ok 460 - ./benchmarks/mem/two-sum.bril licm-roundtrip
ok 461 - ./benchmarks/mem/two-sum.bril original-eval
ok 462 - ./benchmarks/mem/two-sum.bril ssa-eval
ok 463 - ./benchmarks/mem/two-sum.bril licm-eval
ok 464 - ./benchmarks/mem/two-sum.bril licm-roundtrip-eval
ok 465 - ./benchmarks/mem/vsmul.bril natural-loop
ok 466 - ./benchmarks/mem/vsmul.bril labeled
ok 467 - ./benchmarks/mem/vsmul.bril licm
ok 468 - ./benchmarks/mem/vsmul.bril licm-roundtrip
ok 469 - ./benchmarks/mem/vsmul.bril original-eval
ok 470 - ./benchmarks/mem/vsmul.bril ssa-eval
ok 471 - ./benchmarks/mem/vsmul.bril licm-eval
ok 472 - ./benchmarks/mem/vsmul.bril licm-roundtrip-eval
ok 473 - ./benchmarks/mixed/cholesky.bril natural-loop
ok 474 - ./benchmarks/mixed/cholesky.bril labeled
ok 475 - ./benchmarks/mixed/cholesky.bril licm
ok 476 - ./benchmarks/mixed/cholesky.bril licm-roundtrip
ok 477 - ./benchmarks/mixed/cholesky.bril original-eval
ok 478 - ./benchmarks/mixed/cholesky.bril ssa-eval
ok 479 - ./benchmarks/mixed/cholesky.bril licm-eval
ok 480 - ./benchmarks/mixed/cholesky.bril licm-roundtrip-eval
ok 481 - ./benchmarks/mixed/mat-inv.bril natural-loop
ok 482 - ./benchmarks/mixed/mat-inv.bril labeled
ok 483 - ./benchmarks/mixed/mat-inv.bril licm
ok 484 - ./benchmarks/mixed/mat-inv.bril licm-roundtrip
ok 485 - ./benchmarks/mixed/mat-inv.bril original-eval
ok 486 - ./benchmarks/mixed/mat-inv.bril ssa-eval
ok 487 - ./benchmarks/mixed/mat-inv.bril licm-eval
ok 488 - ./benchmarks/mixed/mat-inv.bril licm-roundtrip-eval
ok 489 - ./bril-llvm/linkedlist.bril natural-loop
ok 490 - ./bril-llvm/linkedlist.bril labeled
ok 491 - ./bril-llvm/linkedlist.bril licm
ok 492 - ./bril-llvm/linkedlist.bril licm-roundtrip
not ok 493 - ./bril-llvm/linkedlist.bril original-eval
# exit code: 2
not ok 494 - ./bril-llvm/linkedlist.bril ssa-eval
# exit code: 2
not ok 495 - ./bril-llvm/linkedlist.bril licm-eval
# exit code: 2
not ok 496 - ./bril-llvm/linkedlist.bril licm-roundtrip-eval
# exit code: 2
ok 497 - ./bril-llvm/point.bril natural-loop
ok 498 - ./bril-llvm/point.bril labeled
ok 499 - ./bril-llvm/point.bril licm
ok 500 - ./bril-llvm/point.bril licm-roundtrip
not ok 501 - ./bril-llvm/point.bril original-eval
# exit code: 2
not ok 502 - ./bril-llvm/point.bril ssa-eval
# exit code: 2
not ok 503 - ./bril-llvm/point.bril licm-eval
# exit code: 2
not ok 504 - ./bril-llvm/point.bril licm-roundtrip-eval
# exit code: 2
ok 505 - ./bril-ocaml/test/count/bools.bril natural-loop
ok 506 - ./bril-ocaml/test/count/bools.bril labeled
ok 507 - ./bril-ocaml/test/count/bools.bril licm
ok 508 - ./bril-ocaml/test/count/bools.bril licm-roundtrip
ok 509 - ./bril-ocaml/test/count/bools.bril original-eval
ok 510 - ./bril-ocaml/test/count/bools.bril ssa-eval
ok 511 - ./bril-ocaml/test/count/bools.bril licm-eval
ok 512 - ./bril-ocaml/test/count/bools.bril licm-roundtrip-eval
ok 513 - ./bril-ocaml/test/count/empty.bril natural-loop
ok 514 - ./bril-ocaml/test/count/empty.bril labeled
ok 515 - ./bril-ocaml/test/count/empty.bril licm
ok 516 - ./bril-ocaml/test/count/empty.bril licm-roundtrip
ok 517 - ./bril-ocaml/test/count/empty.bril original-eval
ok 518 - ./bril-ocaml/test/count/empty.bril ssa-eval
ok 519 - ./bril-ocaml/test/count/empty.bril licm-eval
ok 520 - ./bril-ocaml/test/count/empty.bril licm-roundtrip-eval
ok 521 - ./bril-ocaml/test/count/funcs.bril natural-loop
ok 522 - ./bril-ocaml/test/count/funcs.bril labeled
ok 523 - ./bril-ocaml/test/count/funcs.bril licm
ok 524 - ./bril-ocaml/test/count/funcs.bril licm-roundtrip
ok 525 - ./bril-ocaml/test/count/funcs.bril original-eval
ok 526 - ./bril-ocaml/test/count/funcs.bril ssa-eval
ok 527 - ./bril-ocaml/test/count/funcs.bril licm-eval
ok 528 - ./bril-ocaml/test/count/funcs.bril licm-roundtrip-eval
ok 529 - ./bril-ocaml/test/count/ints.bril natural-loop
ok 530 - ./bril-ocaml/test/count/ints.bril labeled
ok 531 - ./bril-ocaml/test/count/ints.bril licm
ok 532 - ./bril-ocaml/test/count/ints.bril licm-roundtrip
ok 533 - ./bril-ocaml/test/count/ints.bril original-eval
ok 534 - ./bril-ocaml/test/count/ints.bril ssa-eval
ok 535 - ./bril-ocaml/test/count/ints.bril licm-eval
ok 536 - ./bril-ocaml/test/count/ints.bril licm-roundtrip-eval
ok 537 - ./examples/test/df/cond-args.bril natural-loop
ok 538 - ./examples/test/df/cond-args.bril labeled
ok 539 - ./examples/test/df/cond-args.bril licm
ok 540 - ./examples/test/df/cond-args.bril licm-roundtrip
not ok 541 - ./examples/test/df/cond-args.bril original-eval
# exit code: 2
not ok 542 - ./examples/test/df/cond-args.bril ssa-eval
# exit code: 2
not ok 543 - ./examples/test/df/cond-args.bril licm-eval
# exit code: 2
not ok 544 - ./examples/test/df/cond-args.bril licm-roundtrip-eval
# exit code: 2
ok 545 - ./examples/test/df/cond.bril natural-loop
ok 546 - ./examples/test/df/cond.bril labeled
ok 547 - ./examples/test/df/cond.bril licm
ok 548 - ./examples/test/df/cond.bril licm-roundtrip
ok 549 - ./examples/test/df/cond.bril original-eval
ok 550 - ./examples/test/df/cond.bril ssa-eval
ok 551 - ./examples/test/df/cond.bril licm-eval
ok 552 - ./examples/test/df/cond.bril licm-roundtrip-eval
ok 553 - ./examples/test/df/fact.bril natural-loop
ok 554 - ./examples/test/df/fact.bril labeled
ok 555 - ./examples/test/df/fact.bril licm
ok 556 - ./examples/test/df/fact.bril licm-roundtrip
ok 557 - ./examples/test/df/fact.bril original-eval
ok 558 - ./examples/test/df/fact.bril ssa-eval
ok 559 - ./examples/test/df/fact.bril licm-eval
ok 560 - ./examples/test/df/fact.bril licm-roundtrip-eval
ok 561 - ./examples/test/dom/loopcond.bril natural-loop
ok 562 - ./examples/test/dom/loopcond.bril labeled
ok 563 - ./examples/test/dom/loopcond.bril licm
ok 564 - ./examples/test/dom/loopcond.bril licm-roundtrip
ok 565 - ./examples/test/dom/loopcond.bril original-eval
ok 566 - ./examples/test/dom/loopcond.bril ssa-eval
ok 567 - ./examples/test/dom/loopcond.bril licm-eval
ok 568 - ./examples/test/dom/loopcond.bril licm-roundtrip-eval
ok 569 - ./examples/test/dom/while.bril natural-loop
ok 570 - ./examples/test/dom/while.bril labeled
ok 571 - ./examples/test/dom/while.bril licm
ok 572 - ./examples/test/dom/while.bril licm-roundtrip
not ok 573 - ./examples/test/dom/while.bril original-eval
# exit code: 2
not ok 574 - ./examples/test/dom/while.bril ssa-eval
# exit code: 2
not ok 575 - ./examples/test/dom/while.bril licm-eval
# exit code: 2
not ok 576 - ./examples/test/dom/while.bril licm-roundtrip-eval
# exit code: 2
ok 577 - ./examples/test/lvn/clobber-arg.bril natural-loop
ok 578 - ./examples/test/lvn/clobber-arg.bril labeled
ok 579 - ./examples/test/lvn/clobber-arg.bril licm
ok 580 - ./examples/test/lvn/clobber-arg.bril licm-roundtrip
ok 581 - ./examples/test/lvn/clobber-arg.bril original-eval
ok 582 - ./examples/test/lvn/clobber-arg.bril ssa-eval
ok 583 - ./examples/test/lvn/clobber-arg.bril licm-eval
ok 584 - ./examples/test/lvn/clobber-arg.bril licm-roundtrip-eval
not ok 585 - ./examples/test/lvn/clobber.bril natural-loop
# exit code: 1
not ok 586 - ./examples/test/lvn/clobber.bril labeled
# exit code: 1
not ok 587 - ./examples/test/lvn/clobber.bril licm
# exit code: 1
not ok 588 - ./examples/test/lvn/clobber.bril licm-roundtrip
# exit code: 1
not ok 589 - ./examples/test/lvn/clobber.bril original-eval
# exit code: 1
not ok 590 - ./examples/test/lvn/clobber.bril ssa-eval
# exit code: 1
not ok 591 - ./examples/test/lvn/clobber.bril licm-eval
# exit code: 1
not ok 592 - ./examples/test/lvn/clobber.bril licm-roundtrip-eval
# exit code: 1
not ok 593 - ./examples/test/lvn/clobber-fold.bril natural-loop
# exit code: 1
not ok 594 - ./examples/test/lvn/clobber-fold.bril labeled
# exit code: 1
not ok 595 - ./examples/test/lvn/clobber-fold.bril licm
# exit code: 1
not ok 596 - ./examples/test/lvn/clobber-fold.bril licm-roundtrip
# exit code: 1
not ok 597 - ./examples/test/lvn/clobber-fold.bril original-eval
# exit code: 1
not ok 598 - ./examples/test/lvn/clobber-fold.bril ssa-eval
# exit code: 1
not ok 599 - ./examples/test/lvn/clobber-fold.bril licm-eval
# exit code: 1
not ok 600 - ./examples/test/lvn/clobber-fold.bril licm-roundtrip-eval
# exit code: 1
ok 601 - ./examples/test/lvn/commute.bril natural-loop
ok 602 - ./examples/test/lvn/commute.bril labeled
ok 603 - ./examples/test/lvn/commute.bril licm
ok 604 - ./examples/test/lvn/commute.bril licm-roundtrip
not ok 605 - ./examples/test/lvn/commute.bril original-eval
# exit code: 2
not ok 606 - ./examples/test/lvn/commute.bril ssa-eval
# exit code: 2
not ok 607 - ./examples/test/lvn/commute.bril licm-eval
# exit code: 2
not ok 608 - ./examples/test/lvn/commute.bril licm-roundtrip-eval
# exit code: 2
ok 609 - ./examples/test/lvn/divide-by-zero.bril natural-loop
ok 610 - ./examples/test/lvn/divide-by-zero.bril labeled
ok 611 - ./examples/test/lvn/divide-by-zero.bril licm
ok 612 - ./examples/test/lvn/divide-by-zero.bril licm-roundtrip
not ok 613 - ./examples/test/lvn/divide-by-zero.bril original-eval
# exit code: 2
not ok 614 - ./examples/test/lvn/divide-by-zero.bril ssa-eval
# exit code: 2
not ok 615 - ./examples/test/lvn/divide-by-zero.bril licm-eval
# exit code: 2
not ok 616 - ./examples/test/lvn/divide-by-zero.bril licm-roundtrip-eval
# exit code: 2
ok 617 - ./examples/test/lvn/fold-comparisons.bril natural-loop
ok 618 - ./examples/test/lvn/fold-comparisons.bril labeled
ok 619 - ./examples/test/lvn/fold-comparisons.bril licm
ok 620 - ./examples/test/lvn/fold-comparisons.bril licm-roundtrip
not ok 621 - ./examples/test/lvn/fold-comparisons.bril original-eval
# exit code: 2
not ok 622 - ./examples/test/lvn/fold-comparisons.bril ssa-eval
# exit code: 2
not ok 623 - ./examples/test/lvn/fold-comparisons.bril licm-eval
# exit code: 2
not ok 624 - ./examples/test/lvn/fold-comparisons.bril licm-roundtrip-eval
# exit code: 2
ok 625 - ./examples/test/lvn/idchain.bril natural-loop
ok 626 - ./examples/test/lvn/idchain.bril labeled
ok 627 - ./examples/test/lvn/idchain.bril licm
ok 628 - ./examples/test/lvn/idchain.bril licm-roundtrip
ok 629 - ./examples/test/lvn/idchain.bril original-eval
ok 630 - ./examples/test/lvn/idchain.bril ssa-eval
ok 631 - ./examples/test/lvn/idchain.bril licm-eval
ok 632 - ./examples/test/lvn/idchain.bril licm-roundtrip-eval
ok 633 - ./examples/test/lvn/idchain-nonlocal.bril natural-loop
ok 634 - ./examples/test/lvn/idchain-nonlocal.bril labeled
ok 635 - ./examples/test/lvn/idchain-nonlocal.bril licm
ok 636 - ./examples/test/lvn/idchain-nonlocal.bril licm-roundtrip
ok 637 - ./examples/test/lvn/idchain-nonlocal.bril original-eval
ok 638 - ./examples/test/lvn/idchain-nonlocal.bril ssa-eval
ok 639 - ./examples/test/lvn/idchain-nonlocal.bril licm-eval
ok 640 - ./examples/test/lvn/idchain-nonlocal.bril licm-roundtrip-eval
ok 641 - ./examples/test/lvn/idchain-prop.bril natural-loop
ok 642 - ./examples/test/lvn/idchain-prop.bril labeled
ok 643 - ./examples/test/lvn/idchain-prop.bril licm
ok 644 - ./examples/test/lvn/idchain-prop.bril licm-roundtrip
ok 645 - ./examples/test/lvn/idchain-prop.bril original-eval
ok 646 - ./examples/test/lvn/idchain-prop.bril ssa-eval
ok 647 - ./examples/test/lvn/idchain-prop.bril licm-eval
ok 648 - ./examples/test/lvn/idchain-prop.bril licm-roundtrip-eval
ok 649 - ./examples/test/lvn/logical-operators.bril natural-loop
ok 650 - ./examples/test/lvn/logical-operators.bril labeled
ok 651 - ./examples/test/lvn/logical-operators.bril licm
ok 652 - ./examples/test/lvn/logical-operators.bril licm-roundtrip
not ok 653 - ./examples/test/lvn/logical-operators.bril original-eval
# exit code: 2
not ok 654 - ./examples/test/lvn/logical-operators.bril ssa-eval
# exit code: 2
not ok 655 - ./examples/test/lvn/logical-operators.bril licm-eval
# exit code: 2
not ok 656 - ./examples/test/lvn/logical-operators.bril licm-roundtrip-eval
# exit code: 2
ok 657 - ./examples/test/lvn/nonlocal.bril natural-loop
ok 658 - ./examples/test/lvn/nonlocal.bril labeled
ok 659 - ./examples/test/lvn/nonlocal.bril licm
ok 660 - ./examples/test/lvn/nonlocal.bril licm-roundtrip
ok 661 - ./examples/test/lvn/nonlocal.bril original-eval
ok 662 - ./examples/test/lvn/nonlocal.bril ssa-eval
ok 663 - ./examples/test/lvn/nonlocal.bril licm-eval
ok 664 - ./examples/test/lvn/nonlocal.bril licm-roundtrip-eval
ok 665 - ./examples/test/lvn/nonlocal-clobber.bril natural-loop
ok 666 - ./examples/test/lvn/nonlocal-clobber.bril labeled
ok 667 - ./examples/test/lvn/nonlocal-clobber.bril licm
ok 668 - ./examples/test/lvn/nonlocal-clobber.bril licm-roundtrip
ok 669 - ./examples/test/lvn/nonlocal-clobber.bril original-eval
ok 670 - ./examples/test/lvn/nonlocal-clobber.bril ssa-eval
ok 671 - ./examples/test/lvn/nonlocal-clobber.bril licm-eval
ok 672 - ./examples/test/lvn/nonlocal-clobber.bril licm-roundtrip-eval
ok 673 - ./examples/test/lvn/reassign.bril natural-loop
ok 674 - ./examples/test/lvn/reassign.bril labeled
ok 675 - ./examples/test/lvn/reassign.bril licm
ok 676 - ./examples/test/lvn/reassign.bril licm-roundtrip
ok 677 - ./examples/test/lvn/reassign.bril original-eval
ok 678 - ./examples/test/lvn/reassign.bril ssa-eval
ok 679 - ./examples/test/lvn/reassign.bril licm-eval
ok 680 - ./examples/test/lvn/reassign.bril licm-roundtrip-eval
ok 681 - ./examples/test/lvn/redundant.bril natural-loop
ok 682 - ./examples/test/lvn/redundant.bril labeled
ok 683 - ./examples/test/lvn/redundant.bril licm
ok 684 - ./examples/test/lvn/redundant.bril licm-roundtrip
ok 685 - ./examples/test/lvn/redundant.bril original-eval
ok 686 - ./examples/test/lvn/redundant.bril ssa-eval
ok 687 - ./examples/test/lvn/redundant.bril licm-eval
ok 688 - ./examples/test/lvn/redundant.bril licm-roundtrip-eval
not ok 689 - ./examples/test/lvn/redundant-dce.bril natural-loop
# exit code: 1
not ok 690 - ./examples/test/lvn/redundant-dce.bril labeled
# exit code: 1
not ok 691 - ./examples/test/lvn/redundant-dce.bril licm
# exit code: 1
not ok 692 - ./examples/test/lvn/redundant-dce.bril licm-roundtrip
# exit code: 1
not ok 693 - ./examples/test/lvn/redundant-dce.bril original-eval
# exit code: 1
not ok 694 - ./examples/test/lvn/redundant-dce.bril ssa-eval
# exit code: 1
not ok 695 - ./examples/test/lvn/redundant-dce.bril licm-eval
# exit code: 1
not ok 696 - ./examples/test/lvn/redundant-dce.bril licm-roundtrip-eval
# exit code: 1
not ok 697 - ./examples/test/lvn/rename-fold.bril natural-loop
# exit code: 1
not ok 698 - ./examples/test/lvn/rename-fold.bril labeled
# exit code: 1
not ok 699 - ./examples/test/lvn/rename-fold.bril licm
# exit code: 1
not ok 700 - ./examples/test/lvn/rename-fold.bril licm-roundtrip
# exit code: 1
not ok 701 - ./examples/test/lvn/rename-fold.bril original-eval
# exit code: 1
not ok 702 - ./examples/test/lvn/rename-fold.bril ssa-eval
# exit code: 1
not ok 703 - ./examples/test/lvn/rename-fold.bril licm-eval
# exit code: 1
not ok 704 - ./examples/test/lvn/rename-fold.bril licm-roundtrip-eval
# exit code: 1
ok 705 - ./examples/test/ssa/if-orig.bril natural-loop
ok 706 - ./examples/test/ssa/if-orig.bril labeled
ok 707 - ./examples/test/ssa/if-orig.bril licm
ok 708 - ./examples/test/ssa/if-orig.bril licm-roundtrip
not ok 709 - ./examples/test/ssa/if-orig.bril original-eval
# exit code: 2
not ok 710 - ./examples/test/ssa/if-orig.bril ssa-eval
# exit code: 2
not ok 711 - ./examples/test/ssa/if-orig.bril licm-eval
# exit code: 2
not ok 712 - ./examples/test/ssa/if-orig.bril licm-roundtrip-eval
# exit code: 2
ok 713 - ./examples/test/ssa/if-ssa.bril natural-loop
ok 714 - ./examples/test/ssa/if-ssa.bril labeled
ok 715 - ./examples/test/ssa/if-ssa.bril licm
ok 716 - ./examples/test/ssa/if-ssa.bril licm-roundtrip
not ok 717 - ./examples/test/ssa/if-ssa.bril original-eval
# exit code: 2
not ok 718 - ./examples/test/ssa/if-ssa.bril ssa-eval
# exit code: 2
not ok 719 - ./examples/test/ssa/if-ssa.bril licm-eval
# exit code: 2
not ok 720 - ./examples/test/ssa/if-ssa.bril licm-roundtrip-eval
# exit code: 2
ok 721 - ./examples/test/ssa/loop-orig.bril natural-loop
ok 722 - ./examples/test/ssa/loop-orig.bril labeled
ok 723 - ./examples/test/ssa/loop-orig.bril licm
ok 724 - ./examples/test/ssa/loop-orig.bril licm-roundtrip
ok 725 - ./examples/test/ssa/loop-orig.bril original-eval
ok 726 - ./examples/test/ssa/loop-orig.bril ssa-eval
ok 727 - ./examples/test/ssa/loop-orig.bril licm-eval
ok 728 - ./examples/test/ssa/loop-orig.bril licm-roundtrip-eval
ok 729 - ./examples/test/ssa/loop-ssa.bril natural-loop
ok 730 - ./examples/test/ssa/loop-ssa.bril labeled
ok 731 - ./examples/test/ssa/loop-ssa.bril licm
ok 732 - ./examples/test/ssa/loop-ssa.bril licm-roundtrip
ok 733 - ./examples/test/ssa/loop-ssa.bril original-eval
ok 734 - ./examples/test/ssa/loop-ssa.bril ssa-eval
ok 735 - ./examples/test/ssa/loop-ssa.bril licm-eval
ok 736 - ./examples/test/ssa/loop-ssa.bril licm-roundtrip-eval
ok 737 - ./examples/test/ssa_roundtrip/argwrite.bril natural-loop
ok 738 - ./examples/test/ssa_roundtrip/argwrite.bril labeled
ok 739 - ./examples/test/ssa_roundtrip/argwrite.bril licm
ok 740 - ./examples/test/ssa_roundtrip/argwrite.bril licm-roundtrip
ok 741 - ./examples/test/ssa_roundtrip/argwrite.bril original-eval
ok 742 - ./examples/test/ssa_roundtrip/argwrite.bril ssa-eval
ok 743 - ./examples/test/ssa_roundtrip/argwrite.bril licm-eval
ok 744 - ./examples/test/ssa_roundtrip/argwrite.bril licm-roundtrip-eval
ok 745 - ./examples/test/ssa_roundtrip/if.bril natural-loop
ok 746 - ./examples/test/ssa_roundtrip/if.bril labeled
ok 747 - ./examples/test/ssa_roundtrip/if.bril licm
ok 748 - ./examples/test/ssa_roundtrip/if.bril licm-roundtrip
ok 749 - ./examples/test/ssa_roundtrip/if.bril original-eval
ok 750 - ./examples/test/ssa_roundtrip/if.bril ssa-eval
ok 751 - ./examples/test/ssa_roundtrip/if.bril licm-eval
ok 752 - ./examples/test/ssa_roundtrip/if.bril licm-roundtrip-eval
ok 753 - ./examples/test/ssa_roundtrip/if-const.bril natural-loop
ok 754 - ./examples/test/ssa_roundtrip/if-const.bril labeled
ok 755 - ./examples/test/ssa_roundtrip/if-const.bril licm
ok 756 - ./examples/test/ssa_roundtrip/if-const.bril licm-roundtrip
ok 757 - ./examples/test/ssa_roundtrip/if-const.bril original-eval
ok 758 - ./examples/test/ssa_roundtrip/if-const.bril ssa-eval
ok 759 - ./examples/test/ssa_roundtrip/if-const.bril licm-eval
ok 760 - ./examples/test/ssa_roundtrip/if-const.bril licm-roundtrip-eval
ok 761 - ./examples/test/ssa_roundtrip/loop.bril natural-loop
ok 762 - ./examples/test/ssa_roundtrip/loop.bril labeled
ok 763 - ./examples/test/ssa_roundtrip/loop.bril licm
ok 764 - ./examples/test/ssa_roundtrip/loop.bril licm-roundtrip
ok 765 - ./examples/test/ssa_roundtrip/loop.bril original-eval
ok 766 - ./examples/test/ssa_roundtrip/loop.bril ssa-eval
ok 767 - ./examples/test/ssa_roundtrip/loop.bril licm-eval
ok 768 - ./examples/test/ssa_roundtrip/loop.bril licm-roundtrip-eval
ok 769 - ./examples/test/ssa_roundtrip/selfloop.bril natural-loop
ok 770 - ./examples/test/ssa_roundtrip/selfloop.bril labeled
ok 771 - ./examples/test/ssa_roundtrip/selfloop.bril licm
ok 772 - ./examples/test/ssa_roundtrip/selfloop.bril licm-roundtrip
ok 773 - ./examples/test/ssa_roundtrip/selfloop.bril original-eval
ok 774 - ./examples/test/ssa_roundtrip/selfloop.bril ssa-eval
ok 775 - ./examples/test/ssa_roundtrip/selfloop.bril licm-eval
ok 776 - ./examples/test/ssa_roundtrip/selfloop.bril licm-roundtrip-eval
ok 777 - ./examples/test/ssa_roundtrip/while.bril natural-loop
ok 778 - ./examples/test/ssa_roundtrip/while.bril labeled
ok 779 - ./examples/test/ssa_roundtrip/while.bril licm
ok 780 - ./examples/test/ssa_roundtrip/while.bril licm-roundtrip
ok 781 - ./examples/test/ssa_roundtrip/while.bril original-eval
ok 782 - ./examples/test/ssa_roundtrip/while.bril ssa-eval
ok 783 - ./examples/test/ssa_roundtrip/while.bril licm-eval
ok 784 - ./examples/test/ssa_roundtrip/while.bril licm-roundtrip-eval
ok 785 - ./examples/test/tdce/combo.bril natural-loop
ok 786 - ./examples/test/tdce/combo.bril labeled
ok 787 - ./examples/test/tdce/combo.bril licm
ok 788 - ./examples/test/tdce/combo.bril licm-roundtrip
not ok 789 - ./examples/test/tdce/combo.bril original-eval
# exit code: 2
not ok 790 - ./examples/test/tdce/combo.bril ssa-eval
# exit code: 2
not ok 791 - ./examples/test/tdce/combo.bril licm-eval
# exit code: 2
not ok 792 - ./examples/test/tdce/combo.bril licm-roundtrip-eval
# exit code: 2
ok 793 - ./examples/test/tdce/diamond.bril natural-loop
ok 794 - ./examples/test/tdce/diamond.bril labeled
ok 795 - ./examples/test/tdce/diamond.bril licm
ok 796 - ./examples/test/tdce/diamond.bril licm-roundtrip
ok 797 - ./examples/test/tdce/diamond.bril original-eval
ok 798 - ./examples/test/tdce/diamond.bril ssa-eval
ok 799 - ./examples/test/tdce/diamond.bril licm-eval
ok 800 - ./examples/test/tdce/diamond.bril licm-roundtrip-eval
ok 801 - ./examples/test/tdce/double.bril natural-loop
ok 802 - ./examples/test/tdce/double.bril labeled
ok 803 - ./examples/test/tdce/double.bril licm
ok 804 - ./examples/test/tdce/double.bril licm-roundtrip
ok 805 - ./examples/test/tdce/double.bril original-eval
ok 806 - ./examples/test/tdce/double.bril ssa-eval
ok 807 - ./examples/test/tdce/double.bril licm-eval
ok 808 - ./examples/test/tdce/double.bril licm-roundtrip-eval
ok 809 - ./examples/test/tdce/double-pass.bril natural-loop
ok 810 - ./examples/test/tdce/double-pass.bril labeled
ok 811 - ./examples/test/tdce/double-pass.bril licm
ok 812 - ./examples/test/tdce/double-pass.bril licm-roundtrip
not ok 813 - ./examples/test/tdce/double-pass.bril original-eval
# exit code: 2
not ok 814 - ./examples/test/tdce/double-pass.bril ssa-eval
# exit code: 2
not ok 815 - ./examples/test/tdce/double-pass.bril licm-eval
# exit code: 2
not ok 816 - ./examples/test/tdce/double-pass.bril licm-roundtrip-eval
# exit code: 2
ok 817 - ./examples/test/tdce/reassign.bril natural-loop
ok 818 - ./examples/test/tdce/reassign.bril labeled
ok 819 - ./examples/test/tdce/reassign.bril licm
ok 820 - ./examples/test/tdce/reassign.bril licm-roundtrip
ok 821 - ./examples/test/tdce/reassign.bril original-eval
ok 822 - ./examples/test/tdce/reassign.bril ssa-eval
ok 823 - ./examples/test/tdce/reassign.bril licm-eval
ok 824 - ./examples/test/tdce/reassign.bril licm-roundtrip-eval
ok 825 - ./examples/test/tdce/reassign-dkp.bril natural-loop
ok 826 - ./examples/test/tdce/reassign-dkp.bril labeled
ok 827 - ./examples/test/tdce/reassign-dkp.bril licm
ok 828 - ./examples/test/tdce/reassign-dkp.bril licm-roundtrip
not ok 829 - ./examples/test/tdce/reassign-dkp.bril original-eval
# exit code: 2
not ok 830 - ./examples/test/tdce/reassign-dkp.bril ssa-eval
# exit code: 2
not ok 831 - ./examples/test/tdce/reassign-dkp.bril licm-eval
# exit code: 2
not ok 832 - ./examples/test/tdce/reassign-dkp.bril licm-roundtrip-eval
# exit code: 2
ok 833 - ./examples/test/tdce/simple.bril natural-loop
ok 834 - ./examples/test/tdce/simple.bril labeled
ok 835 - ./examples/test/tdce/simple.bril licm
ok 836 - ./examples/test/tdce/simple.bril licm-roundtrip
ok 837 - ./examples/test/tdce/simple.bril original-eval
ok 838 - ./examples/test/tdce/simple.bril ssa-eval
ok 839 - ./examples/test/tdce/simple.bril licm-eval
ok 840 - ./examples/test/tdce/simple.bril licm-roundtrip-eval
ok 841 - ./examples/test/tdce/skipped.bril natural-loop
ok 842 - ./examples/test/tdce/skipped.bril labeled
ok 843 - ./examples/test/tdce/skipped.bril licm
ok 844 - ./examples/test/tdce/skipped.bril licm-roundtrip
ok 845 - ./examples/test/tdce/skipped.bril original-eval
ok 846 - ./examples/test/tdce/skipped.bril ssa-eval
ok 847 - ./examples/test/tdce/skipped.bril licm-eval
ok 848 - ./examples/test/tdce/skipped.bril licm-roundtrip-eval
ok 849 - ./examples/test/to_ssa/argwrite.bril natural-loop
ok 850 - ./examples/test/to_ssa/argwrite.bril labeled
ok 851 - ./examples/test/to_ssa/argwrite.bril licm
ok 852 - ./examples/test/to_ssa/argwrite.bril licm-roundtrip
not ok 853 - ./examples/test/to_ssa/argwrite.bril original-eval
# exit code: 2
not ok 854 - ./examples/test/to_ssa/argwrite.bril ssa-eval
# exit code: 2
not ok 855 - ./examples/test/to_ssa/argwrite.bril licm-eval
# exit code: 2
not ok 856 - ./examples/test/to_ssa/argwrite.bril licm-roundtrip-eval
# exit code: 2
ok 857 - ./examples/test/to_ssa/if.bril natural-loop
ok 858 - ./examples/test/to_ssa/if.bril labeled
ok 859 - ./examples/test/to_ssa/if.bril licm
ok 860 - ./examples/test/to_ssa/if.bril licm-roundtrip
not ok 861 - ./examples/test/to_ssa/if.bril original-eval
# exit code: 2
not ok 862 - ./examples/test/to_ssa/if.bril ssa-eval
# exit code: 2
not ok 863 - ./examples/test/to_ssa/if.bril licm-eval
# exit code: 2
not ok 864 - ./examples/test/to_ssa/if.bril licm-roundtrip-eval
# exit code: 2
ok 865 - ./examples/test/to_ssa/if-const.bril natural-loop
ok 866 - ./examples/test/to_ssa/if-const.bril labeled
ok 867 - ./examples/test/to_ssa/if-const.bril licm
ok 868 - ./examples/test/to_ssa/if-const.bril licm-roundtrip
ok 869 - ./examples/test/to_ssa/if-const.bril original-eval
ok 870 - ./examples/test/to_ssa/if-const.bril ssa-eval
ok 871 - ./examples/test/to_ssa/if-const.bril licm-eval
ok 872 - ./examples/test/to_ssa/if-const.bril licm-roundtrip-eval
ok 873 - ./examples/test/to_ssa/if-ssa.bril natural-loop
ok 874 - ./examples/test/to_ssa/if-ssa.bril labeled
ok 875 - ./examples/test/to_ssa/if-ssa.bril licm
ok 876 - ./examples/test/to_ssa/if-ssa.bril licm-roundtrip
not ok 877 - ./examples/test/to_ssa/if-ssa.bril original-eval
# exit code: 2
not ok 878 - ./examples/test/to_ssa/if-ssa.bril ssa-eval
# exit code: 2
not ok 879 - ./examples/test/to_ssa/if-ssa.bril licm-eval
# exit code: 2
not ok 880 - ./examples/test/to_ssa/if-ssa.bril licm-roundtrip-eval
# exit code: 2
ok 881 - ./examples/test/to_ssa/loop-branch.bril natural-loop
ok 882 - ./examples/test/to_ssa/loop-branch.bril labeled
ok 883 - ./examples/test/to_ssa/loop-branch.bril licm
ok 884 - ./examples/test/to_ssa/loop-branch.bril licm-roundtrip
ok 885 - ./examples/test/to_ssa/loop-branch.bril original-eval
ok 886 - ./examples/test/to_ssa/loop-branch.bril ssa-eval
ok 887 - ./examples/test/to_ssa/loop-branch.bril licm-eval
ok 888 - ./examples/test/to_ssa/loop-branch.bril licm-roundtrip-eval
ok 889 - ./examples/test/to_ssa/loop.bril natural-loop
ok 890 - ./examples/test/to_ssa/loop.bril labeled
ok 891 - ./examples/test/to_ssa/loop.bril licm
ok 892 - ./examples/test/to_ssa/loop.bril licm-roundtrip
ok 893 - ./examples/test/to_ssa/loop.bril original-eval
ok 894 - ./examples/test/to_ssa/loop.bril ssa-eval
ok 895 - ./examples/test/to_ssa/loop.bril licm-eval
ok 896 - ./examples/test/to_ssa/loop.bril licm-roundtrip-eval
ok 897 - ./examples/test/to_ssa/selfloop.bril natural-loop
ok 898 - ./examples/test/to_ssa/selfloop.bril labeled
ok 899 - ./examples/test/to_ssa/selfloop.bril licm
ok 900 - ./examples/test/to_ssa/selfloop.bril licm-roundtrip
ok 901 - ./examples/test/to_ssa/selfloop.bril original-eval
ok 902 - ./examples/test/to_ssa/selfloop.bril ssa-eval
ok 903 - ./examples/test/to_ssa/selfloop.bril licm-eval